五布局之帧布局FrameLayout

来源:互联网 发布:淘宝客有没有权重 编辑:程序博客网 时间:2024/06/05 17:57
<?xml version="1.0" encoding="utf-8"?><FrameLayout xmlns: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
原创粉丝点击