You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
1.1 KiB
32 lines
1.1 KiB
7 months ago
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
xmlns:tools="http://schemas.android.com/tools"
|
||
|
android:id="@+id/LinearLayout1"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:gravity="center"
|
||
|
android:orientation="vertical"
|
||
|
tools:context=".MainActivity" >
|
||
|
|
||
|
<TextView
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:padding="5dp"
|
||
|
android:text="@string/intro_message" />
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/textStatus"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:gravity="center"
|
||
|
android:text="@string/secondary_notconnected"
|
||
|
android:textAppearance="?android:attr/textAppearanceLarge"
|
||
|
android:layout_margin="5dp" />
|
||
|
|
||
|
<Button
|
||
|
android:id="@+id/button1"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:enabled="false"
|
||
|
android:text="@string/change_color" />
|
||
|
|
||
|
</LinearLayout>
|