安卓加载界面节点显示(安卓笔记4)

来源:互联网 发布:香港永久免费php空间 编辑:程序博客网 时间:2024/05/21 10:07
最近突击学习NFC中现在那个暂时可以缓缓了,再来继续学习安卓的一些小特效
<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"    android:layout_width="match_parent"    android:layout_height="match_parent"    android:orientation="vertical"    android:gravity="center">    <!--默认的进度条效果-->    <ProgressBar        android:layout_width="wrap_content"        android:layout_height="wrap_content"        style="@android:style/Widget.ProgressBar"/><!--小圆的进度条效果-->    <!--水平进度条效果-->    <ProgressBar        style="@android:style/Widget.ProgressBar.Small"        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:max="60"        android:visibility="visible" />    <ProgressBar        android:layout_width="wrap_content"        android:layout_height="wrap_content"        style="@android:style/Widget.ProgressBar.Horizontal"/><!--普通进度条-->    <ProgressBar        style="@android:style/Widget.ProgressBar.Inverse"        android:layout_width="wrap_content"        android:layout_height="wrap_content" />    <!--小进度条-->    <ProgressBar        android:layout_width="wrap_content"        android:layout_height="wrap_content"        style="@android:style/Widget.ProgressBar.Small.Inverse"/>    <!--大进度条翻转-->    <ProgressBar        android:layout_width="wrap_content"        android:layout_height="wrap_content"        style="@android:style/Widget.ProgressBar.Large.Inverse"/></LinearLayout>
最终的效果图就是这样。main部分之间引用layout就可以了那个就不贴了。

原创粉丝点击