码迷,mamicode.com
首页 > 移动开发 > 详细

(7) android控件-widgets

时间:2018-04-13 22:35:01      阅读:410      评论:0      收藏:0      [点我收藏+]

标签:进度条   cat   lis   tac   androi   tip   http   进度   off   

1.TextView

 类似,C#里的lable,显示一段文本

技术分享图片

<TextView
        android:id="@+id/textView2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:text="TextView" />

 

2.Button

技术分享图片

    <Button
        android:text="PDA"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/buttonPDA"
        android:layout_weight="1"
        />

 

3.ToggleButton

点击按钮 OFF ON切换

 技术分享图片

技术分享图片

    <ToggleButton
        android:id="@+id/toggleButton"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:text="ToggleButton" />

 

4.CheckBox

复选框

技术分享图片

    <CheckBox
        android:id="@+id/checkBox2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:text="CheckBox" />

 

5.RadioButton

单选框

技术分享图片

    <RadioButton
        android:id="@+id/radioButton2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:text="RadioButton" />

 

6.CheckedTextView

 技术分享图片

技术分享图片

 

 

    <CheckedTextView
    android:id="@+id/checkedTextView3"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_weight="1"
    android:text="多选风格"
    android:checkMark="?android:attr/listChoiceIndicatorMultiple"
    />
    <CheckedTextView
        android:id="@+id/checkedTextView4"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:text="单选风格"
        android:checkMark="?android:attr/listChoiceIndicatorSingle"
        />

 

7.Spinner

下拉框

技术分享图片

    <Spinner
        android:id="@+id/spinner"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_weight="1" />

 

8.ProgressBar

弧形进度条1

技术分享图片

   <ProgressBar
        android:id="@+id/progressBar"
        style="?android:attr/progressBarStyle"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="1" />

线型进度条2

技术分享图片

 

   <ProgressBar
        android:id="@+id/progressBar3"
        style="?android:attr/progressBarStyleHorizontal"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="1" />

 

9.SeekBar

滑动调节1

技术分享图片

<SeekBar
    android:id="@+id/seekBar"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_weight="1" />

 


技术分享图片

滑动调节2


<SeekBar
    android:id="@+id/seekBar2"
    style="@style/Widget.AppCompat.SeekBar.Discrete"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_weight="1"
    android:max="10"
    android:progress="3" />

 

 

10.QuickContactBadge

 联系人

 

11.RatingBar

打分

 技术分享图片

    <RatingBar
        android:id="@+id/ratingBar"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="1" />

 

12.Switch

 滑动开关

技术分享图片

    <Switch
        android:id="@+id/switch1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:text="Switch" />

 

13.Space

 

(7) android控件-widgets

标签:进度条   cat   lis   tac   androi   tip   http   进度   off   

原文地址:https://www.cnblogs.com/buchizaodian/p/8744616.html

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