mirror of
https://github.com/moonlight-stream/moonlight-android.git
synced 2025-07-19 19:13:03 +00:00
48 lines
1.6 KiB
XML
48 lines
1.6 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="@dimen/activity_vertical_margin"
|
|
tools:context=".Connection" >
|
|
|
|
<Button
|
|
android:id="@+id/pairButton"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_below="@+id/statusButton"
|
|
android:layout_centerHorizontal="true"
|
|
android:text="Pair with PC"/>
|
|
|
|
|
|
<ListView
|
|
android:id="@+id/mDNSResultView"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:layout_alignParentLeft="true"
|
|
android:layout_alignParentTop="true" >
|
|
</ListView>
|
|
|
|
<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:hint="IP address of GeForce PC" />
|
|
|
|
<Button
|
|
android:id="@+id/statusButton"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_below="@+id/hostTextView"
|
|
android:layout_centerHorizontal="true"
|
|
android:text="Start Streaming Steam!" />
|
|
|
|
|
|
</RelativeLayout>
|