23 lines
748 B
XML
23 lines
748 B
XML
<?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:orientation="vertical" >
|
|
|
|
<TextView
|
|
android:id="@+id/TextView01"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:textColor="#000000"
|
|
android:textSize="20dip" />
|
|
|
|
<TextView
|
|
android:id="@+id/TextView02"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="right"
|
|
android:paddingRight="10dip"
|
|
android:textColor="#000000"
|
|
android:textSize="20dip" />
|
|
|
|
</LinearLayout> |