花样Android ProgressBar史上最强大讲解(6)
来源:未知 责任编辑:责任编辑 发表时间:2013-11-15 19:49 点击:次
Java代码
01.<?xml version="1.0" encoding="utf-8"?>
02.<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
03. android:layout_gravity="center_horizontal"
04.android:layout_width="wrap_content"
05. android:layout_height="wrap_content">
06. <Button
07.android:layout_height="wrap_content"
08.android:text="-"
09. android:layout_width="50dp"
10.android:id="@+id/myView_BT_Down">
11.</Button>
12. <ProgressBar
13.android:layout_gravity="center_vertical"
14. android:layout_height="wrap_content"
15.style="?android:attr/progressBarStyleHorizontal"
16. android:id="@+id/myView_ProgressBar"
17.android:progress="57"
18. android:layout_width="178dp">
19.</ProgressBar>
20. <Button android:layout_height="wrap_content"
21.android:text="+"
22. android:layout_width="50dp"
23.android:id="@+id/myView_BT_Up">
24.</Button>
25.</LinearLayout>
②代码罗
Java代码
01.private AlertDialog.Builder AlterD,AlterD2;
02.//定义提示对话框
03.private LayoutInflater layoutInflater;
04.//定义布局过滤器
05.private LinearLayout myLayout;
06.//定义布局
07.layoutInflater=(LayoutInflater) getSystemService(this.LAYOUT_INFLATER_SERVICE);
08.//获得系统的布局过滤服务
09.myLayout=(LinearLayout) layoutInflater.inflate(R.layout.myview, null);
10.//得到事先设计好的布局
11.
12.myup=(Button) myLayout.findViewById(R.id.myView_BT_Up);
13.mydown=(Button) myLayout.findViewById(R.id.myView_BT_Down);
14.mypro=(ProgressBar)myLayout.findViewById(R.id.myView_ProgressBar);
相关新闻>>
最新推荐更多>>>
- 发表评论
-
- 最新评论 更多>>