mirror of
https://github.com/moparisthebest/Yaaic
synced 2024-11-11 19:45:01 -05:00
18 lines
615 B
XML
18 lines
615 B
XML
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
android:orientation="vertical"
|
||
|
android:layout_width="fill_parent"
|
||
|
android:layout_height="fill_parent"
|
||
|
android:padding="3px">
|
||
|
<EditText
|
||
|
android:id="@+id/channel"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:text="#"
|
||
|
android:minEms="10"
|
||
|
android:singleLine="true" />
|
||
|
<Button
|
||
|
android:id="@+id/join"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:text="@string/join" />
|
||
|
</LinearLayout>
|