<?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:paddingTop="@dimen/activity_vertical_margin"
|
android:background="@color/common_bg"
|
tools:context="com.videogo.devicemgt.EZUpgradeDeviceActivity">
|
|
<LinearLayout
|
android:orientation="vertical"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:layout_alignParentLeft="true"
|
android:layout_alignParentStart="true"
|
android:weightSum="4"
|
android:layout_alignParentTop="true">
|
|
<com.videogo.widget.TitleBar
|
android:id="@+id/title_bar"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content" />
|
|
<RelativeLayout
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:layout_weight="1"
|
android:background="@color/white"
|
android:layout_marginTop="15dp"
|
>
|
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text=""
|
android:id="@+id/ezupgrade_text_version_desc"
|
android:layout_centerVertical="true"
|
android:layout_alignParentLeft="true"
|
android:layout_alignParentStart="true"/>
|
</RelativeLayout>
|
|
<FrameLayout
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:layout_marginTop="15dp"
|
android:layout_alignParentBottom="true"
|
android:layout_alignParentLeft="true"
|
android:layout_alignParentStart="true"
|
android:layout_weight="3"
|
android:background="@color/white"
|
android:layout_marginBottom="46dp">
|
|
<LinearLayout
|
android:id="@+id/ezupgrade_ll_btn"
|
android:orientation="horizontal"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:layout_gravity="left|center_vertical">
|
<Button
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:text="升级"
|
android:textColor="@color/white"
|
android:background="@drawable/login_btn_selector"
|
android:id="@+id/ezupgrade_button"/>
|
</LinearLayout>
|
<LinearLayout
|
android:id="@+id/ezupgrade_ll_progress"
|
android:orientation="horizontal"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:layout_gravity="center_horizontal|center_vertical">
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="New Text"
|
android:id="@+id/ezupgrade_progress_text"/>
|
</LinearLayout>
|
</FrameLayout>
|
</LinearLayout>
|
|
</RelativeLayout>
|