高级UI组件

Posted zwx655

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了高级UI组件相关的知识,希望对你有一定的参考价值。

 

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组件的主要内容,如果未能解决你的问题,请参考以下文章

Android 高级UI解密 :PathMeasure截取片段 与 切线(新思路实现轨迹变换)

Android开发——UI_片段

我们可以在活动 xml 中编写 UI 以及在片段 xm 中编写 UI 吗?

Android基础——高级UI组件:图像视图和图片切换器

UI高级组件

高级UI组件