android-ibc-forum

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

post.xml (1511B)


      1 <?xml version="1.0" encoding="utf-8"?>
      2 
      3 <ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
      4 	android:layout_width="fill_parent" android:layout_height="fill_parent"
      5 	android:paddingLeft="4dp" android:paddingRight="4dp" style="@style/site">
      6 
      7 	<LinearLayout android:orientation="vertical"
      8 		android:layout_width="fill_parent" android:layout_height="fill_parent"
      9 		style="?textbox">
     10 
     11 
     12 		<TextView android:layout_width="wrap_content" android:text="@string/subject"
     13 			android:layout_height="wrap_content" style="@style/normalText"></TextView>
     14 		<EditText android:id="@+id/subject" android:layout_width="fill_parent"
     15 			android:layout_height="wrap_content" />
     16 
     17 		<TextView  android:id="@+id/recipient_label" android:layout_width="wrap_content" android:text="@string/recipient"
     18 			android:layout_height="wrap_content" style="@style/normalText"></TextView>
     19 		<EditText android:id="@+id/recipient" android:layout_width="fill_parent"
     20 			android:layout_height="wrap_content" />
     21 
     22 		<TextView android:text="@string/text" android:layout_width="wrap_content"
     23 			android:layout_height="wrap_content" style="?titleText"></TextView>
     24 		<EditText android:layout_width="fill_parent"
     25 			android:layout_height="fill_parent" android:id="@+id/content"></EditText>
     26 
     27 		<Button android:text="@string/send" android:layout_width="fill_parent"
     28 			android:layout_height="wrap_content" android:layout_margin="10sp"
     29 			android:padding="5sp" android:id="@+id/send" style="?normalText"></Button>
     30 
     31 	</LinearLayout>
     32 
     33 </ScrollView>