Make the IP textview single line with no suggestions. Set focus to the start streaming button by default.

This commit is contained in:
Cameron Gutman 2013-11-22 00:31:25 -05:00
parent db78af916d
commit 49b2332f14

View File

@ -24,6 +24,8 @@
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
android:ems="10"
android:singleLine="true"
android:inputType="textNoSuggestions"
android:hint="IP address of GeForce PC" />
<Button
@ -32,7 +34,11 @@
android:layout_height="wrap_content"
android:layout_below="@+id/hostTextView"
android:layout_centerHorizontal="true"
android:text="Start Streaming Steam!" />
android:text="Start Streaming Steam!" >
<requestFocus />
</Button>
</RelativeLayout>