lzw
2024-02-19 4a31fb20e79e910f20e2dc43b3323dd51fa6e7e0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<?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>