<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.godoro.androidclients.DownloadTextActivity">
<TextView
android:layout_width="match_parent"
android:layout_height="50dp"
android:id="@+id/messageView"
android:text="@string/textToDownload"
/>
<TextView
android:layout_width="match_parent"
android:layout_height="200dp"
android:id="@+id/textView"
android:text="@string/textContent"
android:textStyle="bold"
android:layout_above="@+id/downloadButton"
android:layout_below="@+id/messageView" />
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/downloadAsynch"
android:id="@+id/downloadButton"
android:onClick="onClickDownloadAsynch"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true" />
</RelativeLayout>
Dosyayı İndir