blob: 1f96aadaa59ba567c21412626564f968c05ac9b0 [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"
Dave Santoro39156002011-07-19 01:18:14 -070020 android:orientation="vertical">
21
Flavio Lerdafd43cdd2011-08-05 04:56:44 +010022 <TableLayout
Dave Santoro39156002011-07-19 01:18:14 -070023 android:id="@+id/stream_item_content"
24 android:layout_width="match_parent"
25 android:layout_height="wrap_content"
Flavio Lerda965da842011-07-28 12:54:33 +010026 android:paddingTop="@dimen/detail_update_section_item_vertical_padding"
Flavio Lerdafd43cdd2011-08-05 04:56:44 +010027 android:paddingBottom="@dimen/detail_update_section_item_last_row_extra_vertical_padding"
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"
30 android:background="@drawable/list_selector"
Flavio Lerdafd43cdd2011-08-05 04:56:44 +010031 />
Dave Santoro39156002011-07-19 01:18:14 -070032
33 <View
34 android:id="@+id/horizontal_divider"
35 android:layout_width="match_parent"
36 android:layout_height="1px"
Flavio Lerda965da842011-07-28 12:54:33 +010037 android:layout_marginLeft="@dimen/detail_update_section_side_padding"
38 android:layout_marginRight="@dimen/detail_update_section_side_padding"
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>