blob: 6a653574607eff95b0d317455ddfec5668c06f43 [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:paddingTop="@dimen/detail_update_section_item_vertical_padding"
Mindy Pereira5ab5f862011-08-25 12:03:43 -070029 android:paddingBottom="@dimen/detail_update_section_item_vertical_padding"
Flavio Lerda965da842011-07-28 12:54:33 +010030 android:paddingLeft="@dimen/detail_update_section_item_horizontal_padding"
31 android:paddingRight="@dimen/detail_update_section_item_horizontal_padding"
Makoto Onuki7b456132011-08-18 19:05:21 -070032 android:background="?android:attr/selectableItemBackground"
Flavio Lerdafd43cdd2011-08-05 04:56:44 +010033 />
Dave Santoro39156002011-07-19 01:18:14 -070034
35 <View
36 android:id="@+id/horizontal_divider"
37 android:layout_width="match_parent"
38 android:layout_height="1px"
Dave Santoro39156002011-07-19 01:18:14 -070039 android:background="?android:attr/dividerHorizontal" />
Flavio Lerdafd43cdd2011-08-05 04:56:44 +010040
Dave Santoro39156002011-07-19 01:18:14 -070041</LinearLayout>