<?xml version="1.0" encoding="utf-8"?>
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:gravity="center"
|
android:orientation="vertical" >
|
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="正在升级固件,请勿进行其他操作!!!"
|
android:textSize="30dp"
|
android:textColor="@color/red"
|
/>
|
<ProgressBar
|
android:id="@+id/pro"
|
style="?android:attr/progressBarStyleHorizontal"
|
android:layout_width="match_parent"
|
android:layout_height="40dp"
|
android:max="100"
|
android:progress="30" />
|
|
</LinearLayout>
|