mirror of
https://github.com/fergalmoran/chrometophone.git
synced 2026-01-31 13:15:55 +00:00
30 lines
978 B
XML
30 lines
978 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:background="@drawable/background_gradient">
|
|
|
|
<ImageView
|
|
android:id="@+id/header"
|
|
android:background="@drawable/header"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="5dip"/>
|
|
|
|
<ScrollView
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_above="@+id/footer"
|
|
android:layout_below="@+id/header"
|
|
android:layout_margin="5dip">
|
|
|
|
<TextView
|
|
android:id="@+id/help_text"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:textColor="#000000"/>
|
|
|
|
</ScrollView>
|
|
|
|
</RelativeLayout> |