<?xml version="1.0" encoding="utf-8"?>
|
<LinearLayout
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
xmlns:tools="http://schemas.android.com/tools"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:orientation="vertical">
|
|
<include layout="@layout/app_top_bar"/>
|
|
<RelativeLayout
|
android:layout_width="match_parent"
|
android:layout_height="match_parent">
|
|
<TextView
|
android:id="@+id/app_fwupdata_btn"
|
android:layout_width="match_parent"
|
android:layout_height="40dp"
|
android:gravity="center"
|
android:layout_alignParentBottom="true"
|
android:enabled="true"
|
android:background="@drawable/bg_internetlogin_loginbtn_selector"
|
android:layout_margin="20dp"
|
android:textSize="16sp"
|
android:textColor="@color/appwhite"
|
android:text="等待设备插入"/>
|
|
<ListView
|
android:id="@+id/app_fw_list"
|
android:layout_above="@id/app_fwupdata_btn"
|
android:scrollbars="none"
|
android:divider="@color/appline"
|
android:dividerHeight="0.5dp"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent">
|
|
</ListView>
|
|
<app.dinus.com.loadingdrawable.LoadingView
|
android:id="@+id/progress_loading"
|
android:layout_width="80dp"
|
android:layout_height="80dp"
|
android:layout_centerInParent="true"
|
android:visibility="visible"
|
app:loading_renderer="DanceLoadingRenderer"/>
|
|
<TextView
|
android:id="@+id/app_topbar_no"
|
android:gravity="center"
|
android:layout_width="300dp"
|
android:layout_height="wrap_content"
|
android:textColor="@color/apptakeaction"
|
android:layout_centerInParent="true"
|
android:visibility="gone"
|
android:textSize="20sp"
|
android:text="请在 /FwUpgradeDemo/FW/ 中放置所需升级固件"/>
|
|
</RelativeLayout>
|
|
</LinearLayout>
|