aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/AndroidBootstrap/res/layout/row_two_columns.xml
blob: 1029bffb5d74d9811879b555157b941f28bc9b71 (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
27
28
<?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="horizontal"
	android:padding="10dp">
	
    <TextView
         android:layout_width="0dp"
    	android:layout_height="wrap_content"
    	android:layout_weight="1"
    	android:id="@+id/lblColA"
    	android:gravity="center"
        />
    
    <TextView
         android:layout_width="0dp"
    	android:layout_height="wrap_content"
    	android:layout_weight="1"
    	android:id="@+id/lblColB"
    	android:gravity="center"
        />

	
	
</LinearLayout>