Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?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:orientation="vertical" >
- <ScrollView
- android:layout_width="match_parent"
- android:layout_height="0dip"
- android:layout_weight="4" >
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="vertical"
- android:paddingLeft="16dip"
- android:paddingRight="16dip" >
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="@string/about_text"
- android:textAppearance="?android:attr/textAppearanceMedium" />
- </LinearLayout>
- </ScrollView>
- <LinearLayout
- android:layout_width="fill_parent"
- android:layout_height="0dip"
- android:layout_weight="1"
- android:orientation="horizontal" >
- <TextView
- android:id="@+id/aboutReport"
- android:layout_width="0dip"
- android:layout_height="match_parent"
- android:layout_margin="8dip"
- android:layout_weight="1"
- android:background="@color/translucent_red"
- android:clickable="true"
- android:gravity="center"
- android:text="@string/about_report"
- android:textAppearance="?android:attr/textAppearanceLarge" />
- <TextView
- android:id="@+id/aboutRequest"
- android:layout_width="0dip"
- android:layout_height="match_parent"
- android:layout_margin="8dip"
- android:layout_weight="1"
- android:background="@color/translucent_cyan"
- android:clickable="true"
- android:gravity="center"
- android:text="@string/about_request"
- android:textAppearance="?android:attr/textAppearanceLarge" />
- </LinearLayout>
- </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement