Only check out the NDK in android checkouts.
[android_tools.git] / sdk / platforms / android-26 / data / res / layout / simple_list_item_2.xml
blobbcbc6fc8e616b4ee242d346f0571170151a459c2
1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- Copyright (C) 2006 The Android Open Source Project
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 -->
17 <TwoLineListItem xmlns:android="http://schemas.android.com/apk/res/android" 
18     android:layout_width="match_parent"
19     android:layout_height="wrap_content"
20     android:minHeight="?attr/listPreferredItemHeight"
21     android:mode="twoLine"
22     android:paddingStart="?attr/listPreferredItemPaddingStart"
23     android:paddingEnd="?attr/listPreferredItemPaddingEnd">
25     <TextView android:id="@id/text1"
26         android:layout_width="match_parent"
27         android:layout_height="wrap_content"
28         android:layout_marginTop="8dp"
29         android:textAppearance="?attr/textAppearanceListItem" />
31     <TextView android:id="@id/text2"
32         android:layout_width="match_parent"
33         android:layout_height="wrap_content"
34         android:layout_below="@id/text1"
35         android:layout_alignStart="@id/text1"
36         android:textAppearance="?attr/textAppearanceListItemSecondary" />
38 </TwoLineListItem>