25 lines
826 B
XML
25 lines
826 B
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
android:orientation="horizontal"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:padding="10dp" android:background="#ffffffff">
|
||
|
|
||
|
<TextView
|
||
|
android:text="text view two"
|
||
|
android:layout_width="fill_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:textColor="#ffff0000"
|
||
|
android:textSize="20dp"
|
||
|
android:id="@+id/text2"
|
||
|
android:layout_weight="3" />
|
||
|
|
||
|
<ImageView
|
||
|
android:layout_width="50dp"
|
||
|
android:layout_height="50dp"
|
||
|
android:textColor="#ffff0000"
|
||
|
android:textSize="20dp"
|
||
|
android:id="@+id/text1"
|
||
|
android:layout_weight="7" />
|
||
|
|
||
|
</LinearLayout>
|