17 lines
653 B
XML
17 lines
653 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:background="@color/theme_background"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
<com.ubt.jimu.controller.view.RemoteControlManagementView
|
|
android:id="@+id/control_management_view"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"/>
|
|
<include
|
|
android:visibility="visible"
|
|
layout="@layout/control_title_normal"/>
|
|
<include
|
|
android:visibility="gone"
|
|
layout="@layout/control_status"/>
|
|
</RelativeLayout>
|