blob: 4f10bdfdf6d89af74a7fa0b8aa0d0c7639d7532a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:minHeight="?android:attr/listPreferredItemHeight"
android:gravity="center"
android:orientation="vertical" >
<TextView
android:id="@+id/title"
android:textSize="16sp"
android:padding="4dp"
android:textStyle="bold"
android:layout_height="match_parent"
android:layout_width="match_parent"/>
</LinearLayout>
|