69 lines
3.1 KiB
XML
69 lines
3.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/rl_title"
|
|
android:paddingTop="@dimen/control_menu_icon_margin"
|
|
android:paddingBottom="@dimen/control_menu_icon_margin"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
<ImageView
|
|
android:id="@+id/btn_back"
|
|
android:layout_width="@dimen/round_button_width"
|
|
android:layout_height="@dimen/round_button_width"
|
|
android:layout_marginLeft="@dimen/btn_back_margin_top"
|
|
android:layout_alignParentLeft="true"/>
|
|
<RelativeLayout
|
|
android:orientation="horizontal"
|
|
android:id="@+id/rl_prompt_not_turn_off_screen"
|
|
android:visibility="gone"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="@dimen/common_12dp"
|
|
android:layout_toRightOf="@+id/btn_back"
|
|
android:layout_centerVertical="true">
|
|
<ImageView
|
|
android:id="@+id/iv_game_controller_warning"
|
|
android:layout_width="@dimen/common_15_5dp"
|
|
android:layout_height="@dimen/common_15_5dp"
|
|
android:layout_marginTop="@dimen/common_1_4dp"
|
|
android:layout_marginRight="@dimen/common_5_5dp"
|
|
android:src="@mipmap/round_warning"
|
|
android:scaleType="centerCrop"
|
|
android:layout_alignParentLeft="true"
|
|
android:layout_alignParentTop="true"/>
|
|
<TextView
|
|
android:textSize="@dimen/comm_txt_14sp"
|
|
android:textColor="#ff92a7b6"
|
|
android:id="@+id/tv_prompt"
|
|
android:layout_width="@dimen/common_308dp"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/no_close_screen_keep_game_controller_use"
|
|
android:maxLines="2"
|
|
android:singleLine="false"
|
|
android:layout_toRightOf="@+id/iv_game_controller_warning"
|
|
android:layout_centerVertical="true"/>
|
|
</RelativeLayout>
|
|
<ImageView
|
|
android:id="@+id/btn_edit"
|
|
android:layout_width="@dimen/round_button_width"
|
|
android:layout_height="@dimen/round_button_width"
|
|
android:layout_marginRight="@dimen/btn_back_margin_top"
|
|
android:layout_alignParentRight="true"/>
|
|
<ImageView
|
|
android:id="@+id/btn_power_down"
|
|
android:layout_width="@dimen/round_button_width"
|
|
android:layout_height="@dimen/round_button_width"
|
|
android:layout_toLeftOf="@+id/btn_edit"/>
|
|
<ImageView
|
|
android:id="@+id/btn_connect"
|
|
android:layout_width="@dimen/round_button_width"
|
|
android:layout_height="@dimen/round_button_width"
|
|
android:layout_toLeftOf="@+id/btn_power_down"/>
|
|
<ImageView
|
|
android:id="@+id/btn_physical_controller_connect_state"
|
|
android:visibility="gone"
|
|
android:layout_width="@dimen/round_button_width"
|
|
android:layout_height="@dimen/round_button_width"
|
|
android:src="@mipmap/game_controller_icon"
|
|
android:layout_toLeftOf="@+id/btn_connect"/>
|
|
</RelativeLayout>
|