android-openrat

Unnamed repository; edit this file 'description' to name the repository.
git clone http://git.code.weiherhei.de/android-openrat.git
Log | Files | Refs

listing_entry.xml (1035B)


      1 <?xml version="1.0" encoding="utf-8"?>
      2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
      3 	android:orientation="horizontal" android:layout_width="fill_parent"
      4 	android:layout_height="fill_parent" android:padding="5sp">
      5 
      6 	<ImageView android:id="@+id/listentry_image"
      7 		android:layout_width="wrap_content" android:layout_height="wrap_content" android:padding="5sp">
      8 	</ImageView>
      9 	
     10 	<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
     11 		android:orientation="vertical" android:layout_width="fill_parent"
     12 		android:layout_height="wrap_content" android:paddingLeft="5sp">
     13 
     14 
     15 		<TextView android:text="@+id/TextView03"
     16 			android:layout_width="wrap_content" android:layout_height="wrap_content"
     17 			android:id="@+id/listentry_name" android:textSize="20sp"></TextView>
     18 		<TextView android:text="@+id/TextView01"
     19 			android:layout_width="wrap_content" android:layout_height="wrap_content"
     20 			android:id="@+id/listentry_description" android:textSize="13sp"></TextView>
     21 	</LinearLayout>
     22 </LinearLayout>