进度条的界面设计

来源:互联网 发布:惠天听书传销 知乎 编辑:程序博客网 时间:2024/06/07 18:27

Pro.xml中的布局设置:

 

<?xmlversion="1.0"encoding="utf-8"?>

<FrameLayoutxmlns:android="http://schemas.android.com/apk/res/android"

    android:layout_width="match_parent"

    android:layout_height="match_parent">

 

   <ProgressBar

        android:layout_gravity="center"

        android:id="@+id/progressBar1"

        style="?android:attr/progressBarStyleLarge"

        android:layout_width="wrap_content"

        android:layout_height="wrap_content"/>

 

   <TextView

        android:layout_gravity="center"

        android:id="@+id/textView1"

        android:layout_width="wrap_content"

        android:layout_height="wrap_content"

        android:text="80%"/>

 

</FrameLayout>

 

 

0 0