mirror of
https://github.com/moonlight-stream/moonlight-android.git
synced 2025-07-21 20:13:06 +00:00
89 lines
3.5 KiB
XML
89 lines
3.5 KiB
XML
<ScrollView 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" >
|
|
|
|
<RelativeLayout
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content" >
|
|
|
|
<RadioGroup
|
|
android:id="@+id/streamConfigGroup"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentLeft="true"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_marginTop="10dp"
|
|
android:orientation="vertical" >
|
|
|
|
<RadioButton
|
|
android:id="@+id/config720p30Selected"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="720p 30 FPS (Only recommended for poor devices or networks)" />
|
|
|
|
<RadioButton
|
|
android:id="@+id/config720p60Selected"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="7dp"
|
|
android:text="720p 60 FPS (Recommended for most devices and networks)" />
|
|
|
|
<RadioButton
|
|
android:id="@+id/config1080p30Selected"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="7dp"
|
|
android:text="1080p 30 FPS (Recommended for most devices if 1080p streaming is desired)" />
|
|
|
|
<RadioButton
|
|
android:id="@+id/config1080p60Selected"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="7dp"
|
|
android:text="1080p 60 FPS (Requires extremely fast device and network)" />
|
|
|
|
</RadioGroup>
|
|
|
|
<Button
|
|
android:id="@+id/advancedSettingsButton"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_below="@+id/disableToasts"
|
|
android:layout_centerHorizontal="true"
|
|
android:layout_marginTop="15dp"
|
|
android:text="Advanced Settings" />
|
|
|
|
<CheckBox
|
|
android:id="@+id/stretchToFill"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_below="@+id/streamConfigGroup"
|
|
android:layout_marginTop="15dp"
|
|
android:text="Stretch video to fill screen" />
|
|
|
|
<CheckBox
|
|
android:id="@+id/enableSops"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_below="@+id/stretchToFill"
|
|
android:layout_marginTop="15dp"
|
|
android:text="Allow GFE to modify game settings for optimal streaming" />
|
|
|
|
<CheckBox
|
|
android:id="@+id/disableToasts"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_below="@+id/enableSops"
|
|
android:layout_marginTop="15dp"
|
|
android:text="Disable on-screen connection warning messages" />
|
|
|
|
</RelativeLayout>
|
|
|
|
</ScrollView>
|