blob: 308c5f5c3e5844eb777d9e05280f711a8c7477b3 [file] [log] [blame]
Dave Santoro39156002011-07-19 01:18:14 -07001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2011 The Android Open Source Project
3
4 Licensed under the Apache License, Version 2.0 (the "License");
5 you may not use this file except in compliance with the License.
6 You may obtain a copy of the License at
7
8 http://www.apache.org/licenses/LICENSE-2.0
9
10 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15-->
16
17<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
18 android:layout_width="match_parent"
19 android:layout_height="wrap_content"
Mindy Pereira5ab5f862011-08-25 12:03:43 -070020 android:orientation="vertical"
21 android:paddingLeft="@dimen/detail_update_section_side_padding"
22 android:paddingRight="@dimen/detail_update_section_side_padding">
Dave Santoro39156002011-07-19 01:18:14 -070023
Flavio Lerdafd43cdd2011-08-05 04:56:44 +010024 <TableLayout
Dave Santoro39156002011-07-19 01:18:14 -070025 android:id="@+id/stream_item_content"
26 android:layout_width="match_parent"
27 android:layout_height="wrap_content"
Flavio Lerda965da842011-07-28 12:54:33 +010028 android:paddingLeft="@dimen/detail_update_section_item_horizontal_padding"
29 android:paddingRight="@dimen/detail_update_section_item_horizontal_padding"
Mindy Pereira19f64f82011-08-28 11:53:02 -070030 android:paddingTop="@dimen/detail_update_section_item_vertical_padding"
31 android:paddingBottom="@dimen/detail_update_section_item_vertical_padding"
Makoto Onuki7b456132011-08-18 19:05:21 -070032 android:background="?android:attr/selectableItemBackground"
Mindy Pereira19f64f82011-08-28 11:53:02 -070033 android:layout_gravity="center_vertical"
Flavio Lerdafd43cdd2011-08-05 04:56:44 +010034 />
Dave Santoro39156002011-07-19 01:18:14 -070035
36 <View
37 android:id="@+id/horizontal_divider"
38 android:layout_width="match_parent"
39 android:layout_height="1px"
Mindy Pereira19f64f82011-08-28 11:53:02 -070040 android:background="?android:attr/dividerHorizontal"
41 android:layout_gravity="bottom" />
Flavio Lerdafd43cdd2011-08-05 04:56:44 +010042
Dave Santoro39156002011-07-19 01:18:14 -070043</LinearLayout>