blob: f638ade5ddaa1f27fe4df2a4349eb716edb35871 [file] [log] [blame]
The Android Open Source Project5dc3b4f2008-10-21 07:00:00 -07001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2008 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<!-- Layout used for edit separators. -->
18
19<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
20 android:layout_width="fill_parent"
21 android:layout_height="wrap_content"
The Android Open Source Project3b024222009-02-13 12:57:53 -080022 android:layout_marginBottom="3dip"
The Android Open Source Project5dc3b4f2008-10-21 07:00:00 -070023 android:orientation="vertical"
The Android Open Source Project3b024222009-02-13 12:57:53 -080024 >
The Android Open Source Project5dc3b4f2008-10-21 07:00:00 -070025
The Android Open Source Project3b024222009-02-13 12:57:53 -080026 <LinearLayout
27 android:id="@+id/separator"
The Android Open Source Project5dc3b4f2008-10-21 07:00:00 -070028 android:layout_width="fill_parent"
29 android:layout_height="wrap_content"
The Android Open Source Project3b024222009-02-13 12:57:53 -080030 android:layout_marginLeft="14dip"
31 android:layout_marginTop="3dip"
32 android:layout_marginBottom="1dip"
33 android:layout_marginRight="?android:attr/scrollbarSize"
34 android:orientation="horizontal"
35 android:gravity="bottom"
36 android:focusable="true"
37 android:clickable="true"
38 >
The Android Open Source Project5dc3b4f2008-10-21 07:00:00 -070039
The Android Open Source Project3b024222009-02-13 12:57:53 -080040 <TextView android:id="@+id/text"
41 android:layout_width="0dip"
42 android:layout_height="wrap_content"
43 android:layout_weight="1"
44 android:layout_marginBottom="8dip"
45 android:textAppearance="?android:attr/textAppearanceMedium"
46 />
47
48 <ImageView android:id="@+id/add"
49 style="@style/PlusButton"
50 android:layout_width="wrap_content"
51 android:layout_height="wrap_content"
52 android:duplicateParentState="true"
53 />
54
55 </LinearLayout>
The Android Open Source Project5dc3b4f2008-10-21 07:00:00 -070056
57</LinearLayout>