You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
1.1 KiB
XML
31 lines
1.1 KiB
XML
<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"
|
|
android:paddingBottom="@dimen/activity_vertical_margin"
|
|
android:paddingLeft="@dimen/activity_horizontal_margin"
|
|
android:paddingRight="@dimen/activity_horizontal_margin"
|
|
android:paddingTop="@dimen/activity_vertical_margin"
|
|
tools:context=".MainActivity" >
|
|
|
|
<TextView
|
|
android:id="@+id/tvIsConnected"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/hello_world" />
|
|
|
|
<Button
|
|
android:id="@+id/btnRequest"
|
|
android:layout_width="200dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_horizontal"
|
|
android:text="Request"
|
|
android:layout_below="@+id/tvIsConnected"/>
|
|
|
|
<EditText
|
|
android:id="@+id/etRespose"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="400dp"
|
|
android:layout_below="@+id/btnRequest"/>
|
|
</RelativeLayout>
|