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.
30 lines
926 B
XML
30 lines
926 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical" >
|
|
|
|
<TextView
|
|
android:id="@+id/tvIsConnected"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_horizontal"
|
|
android:background="#FF0000"
|
|
android:textColor="#FFF"
|
|
android:textSize="18dp"
|
|
android:layout_marginBottom="5dp"
|
|
android:text="is connected? " />
|
|
|
|
<EditText
|
|
android:id="@+id/etResponse"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="fill_parent"
|
|
android:ems="10"
|
|
android:layout_marginTop="10dp"
|
|
android:inputType="textMultiLine" >
|
|
|
|
<requestFocus />
|
|
</EditText>
|
|
|
|
</LinearLayout>
|