mirror of https://github.com/BOINC/boinc.git
25 lines
926 B
XML
25 lines
926 B
XML
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:id="@+id/boinc_not_available"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
tools:context=".MainActivity" >
|
|
|
|
<TextView
|
|
android:id="@+id/textView1"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerHorizontal="true"
|
|
android:layout_centerVertical="true"
|
|
android:text="@string/boinc_not_available" />
|
|
|
|
<Button
|
|
android:id="@+id/install_boinc_button"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_below="@+id/textView1"
|
|
android:layout_centerHorizontal="true"
|
|
android:layout_marginTop="46dp"
|
|
android:text="@string/install_boinc_button" />
|
|
|
|
</RelativeLayout> |