mirror of
https://github.com/moonlight-stream/moonlight-android.git
synced 2025-07-20 19:42:45 +00:00
35 lines
1.2 KiB
XML
35 lines
1.2 KiB
XML
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:paddingBottom="@dimen/activity_vertical_margin"
|
|
android:paddingLeft="@dimen/activity_horizontal_margin"
|
|
android:paddingRight="@dimen/activity_horizontal_margin"
|
|
android:paddingTop="10dp"
|
|
tools:context=".Connection" >
|
|
|
|
<EditText
|
|
android:id="@+id/hostTextView"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentLeft="true"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_alignParentTop="true"
|
|
android:ems="10"
|
|
android:singleLine="true"
|
|
android:inputType="textNoSuggestions"
|
|
android:hint="@string/ip_hint" >
|
|
|
|
<requestFocus />
|
|
</EditText>
|
|
|
|
<Button
|
|
android:id="@+id/addPc"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_below="@+id/hostTextView"
|
|
android:layout_centerHorizontal="true"
|
|
android:text="@string/button_add_pc" />
|
|
|
|
</RelativeLayout>
|