<?xml version="1.0" encoding="utf-8"?>
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
xmlns:tools="http://schemas.android.com/tools"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:orientation="vertical"
|
tools:context=".ui.DeviceDetailActivity">
|
|
<RelativeLayout
|
android:id="@+id/rl_title"
|
android:layout_width="match_parent"
|
android:layout_height="@dimen/px_100"
|
android:background="@color/lc_demo_color_ffffff">
|
|
<LinearLayout
|
android:id="@+id/ll_back"
|
android:layout_width="wrap_content"
|
android:layout_height="match_parent"
|
android:gravity="center"
|
android:paddingLeft="@dimen/px_20"
|
android:paddingRight="@dimen/px_20">
|
|
<ImageView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:src="@mipmap/lc_demo_nav_back"></ImageView>
|
</LinearLayout>
|
|
<TextView
|
android:id="@+id/tv_title"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_centerInParent="true"
|
android:textColor="@color/lc_demo_color_2c2c2c"
|
android:textSize="@dimen/px_36"
|
android:textStyle="bold"></TextView>
|
|
<LinearLayout
|
android:id="@+id/ll_operate"
|
android:layout_width="wrap_content"
|
android:layout_height="match_parent"
|
android:layout_alignParentRight="true"
|
android:gravity="center"
|
android:paddingLeft="@dimen/px_20"
|
android:paddingRight="@dimen/px_20"
|
android:visibility="gone">
|
|
<ImageView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:src="@mipmap/lc_demo_nav_save"></ImageView>
|
</LinearLayout>
|
</RelativeLayout>
|
|
<FrameLayout
|
android:id="@+id/fr_content"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:layout_below="@id/rl_title"></FrameLayout>
|
|
<RelativeLayout
|
android:id="@+id/rl_loading"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:layout_below="@id/rl_title"
|
android:background="@color/lc_demo_color_ffffff"
|
android:visibility="gone">
|
|
<ProgressBar
|
android:id="@+id/pb_loading"
|
style="@style/lc_demo_loading"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_centerInParent="true" />
|
</RelativeLayout>
|
</RelativeLayout>
|