|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<ScrollView
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:fillViewport="true">
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:scaleType="center"
|
|
|
|
android:id="@+id/icon"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:padding="10dip"
|
|
|
|
android:src="@drawable/icon" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:id="@+id/transdroid"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:text="Transdroid X.XX.X"
|
|
|
|
android:padding="10dip"
|
|
|
|
android:textSize="18dip" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:id="@+id/description"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:autoLink="web"
|
|
|
|
android:text="http://www.transdroid.org"
|
|
|
|
android:gravity="center"
|
|
|
|
android:paddingBottom="10dip" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:id="@+id/changes"
|
|
|
|
android:text="@string/changes"
|
|
|
|
android:autoLink="web"
|
|
|
|
android:padding="10dip" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</ScrollView>
|