码迷,mamicode.com
首页 > 其他好文 > 详细

高级UI组件

时间:2020-02-14 20:25:19      阅读:53      评论:0      收藏:0      [点我收藏+]

标签:tin   parent   int   mst   属性   attr   pre   ntop   alt   

 

1.进度条

   (1).圆形进度条(一般默认为圆形进度条)

    

 <ProgressBar
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />

技术图片

 

        (2)条状进度条

<ProgressBar
        android:id="@+id/progressBar"
        style="?android:attr/progressBarStyleHorizontal"
        android:max="100"
        android:progress="50"       设置进度为50%
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="2dp"
         />

技术图片

 

 一些常用进度条属性:

技术图片

 

  通常情况下进度条的使用过程

技术图片

 

 2.拖动条组件

<SeekBar
        android:id="@+id/seekBar"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:max="10"
        android:progress="5"
         />

技术图片

 

 3.星星级评价

 默认为五颗星

<RatingBar
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />

自定义数量

<RatingBar
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:numStars="7"
        android:rating="5"/>

技术图片

 

高级UI组件

标签:tin   parent   int   mst   属性   attr   pre   ntop   alt   

原文地址:https://www.cnblogs.com/zwx655/p/12308595.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!