main.xml 1011 Bytes
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="@drawable/layout_backgroud"
    android:orientation="vertical" >
    <include layout="@layout/title"/>
    <TextView
        android:id="@+id/edit_text"    	
    	android:layout_width="fill_parent"
    	android:layout_height="wrap_content"    	
    	android:textSize="@dimen/txt_size"    	
    	android:layout_margin="@dimen/margin_"
        android:text="@string/example_explain"
    />
    <ListView 
        android:id="@+id/listview_main"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"    	
        android:divider="@drawable/line_background"
        android:dividerHeight="@dimen/line_height"      
        android:cacheColorHint="@color/white"
        android:layout_margin="10dp"       
        android:paddingBottom="10dp"
     />
</LinearLayout>