aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/AndroidBootstrap/res/layout/row_title_and_subtitle.xml
blob: ec25c0a46d7c3725dd2d2ec853b377ca1962d75b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?xml version="1.0" encoding="UTF-8"?>
<LinearLayout 
    xmlns:android="http://schemas.android.com/apk/res/android"
	xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
	android:orientation="vertical"
	android:padding="10dp">
	
    <TextView
         android:layout_width="fill_parent"
    	android:layout_height="wrap_content"
    	android:id="@+id/lblTitle"
    	android:gravity="center"
        />
    
    <TextView
         android:layout_width="0dp"
    	android:layout_height="wrap_content"
    	android:id="@+id/lblSubTitle"
    	android:gravity="center"
        />

	
	
</LinearLayout>