博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Android day02
阅读量:5152 次
发布时间:2019-06-13

本文共 1628 字,大约阅读时间需要 5 分钟。

6.RadioButton(单选按钮)   

嵌入到RadioGroup中实现单选效果   

android:checkedButton="Radio的id值";

  

int getCheckedRadioButtonId();  //获得被选中的radiobutton的id值

 

例:

<RadioGroup

   android:layout_width="fill_parent"
     android:layout_height="wrap_content"
     android:checkedButton="@+id/rb2"
 >
    <RadioButton
       android:id="@+id/rb1"
       android:layout_width="fill_parent"
         android:layout_height="wrap_content"
       android:text="王晋是帅哥"
    />
    <RadioButton
       android:id="@+id/rb2" 
       android:layout_width="fill_parent"
        android:layout_height="wrap_content"
       android:text="王晋是傻逼"
    />
 </RadioGroup>

 

 7.ImageView(图片控件)   

android:src //图片的资源id   

android:maxWidth //最大宽度  

android:maxHeight //最大高度   

android:adjustViewBounds //设置为true,则macWidth和maxHeight生效

例:

 <ImageView

    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:maxWidth="100px"
    android:maxHeight="150px"
    android:adjustViewBounds="true"
    android:src="@drawable/a"
 />

 8.ImageButton(图片按钮)  

例:

<CheckBox

   android:layout_width="fill_parent"
     android:layout_height="wrap_content"
     android:text="lemon"
   android:checked="true"
 />
 <CheckBox
   android:layout_width="fill_parent" 
      android:layout_height="wrap_content"
      android:text="mango"
      android:checked="true"
 />

 

9.TimePicker(时间控件)  

例:

<TimePicker

  android:id="@+id/tp"
  android:layout_width="fill_parent" 
  android:layout_height="wrap_content"
 />

 

10.DatePicker(日期控件)   //修改日期   

void updateDate(int year,int monthOfYear,int dayOfMonth)   

注意:monthOfYear是从0-11表示1-12月

例:

<DatePicker

    android:id="@+id/dp"
    android:layout_width="fill_parent"
      android:layout_height="wrap_content" 
 />

转载于:https://www.cnblogs.com/wangjinshabi250/p/6866713.html

你可能感兴趣的文章
w3m常用快捷键
查看>>
【Unity 3D】学习笔记四十一:关节
查看>>
原型设计工具
查看>>
windows下的C++ socket服务器(4)
查看>>
css3 2d转换3d转换以及动画的知识点汇总
查看>>
【Java】使用Eclipse进行远程调试,Linux下开启远程调试
查看>>
js对象属性方法
查看>>
对Vue为什么不支持IE8的解释之一
查看>>
PHP队列
查看>>
程序代码记Log
查看>>
Maven安装配置
查看>>
ORA-10635: Invalid segment or tablespace type
查看>>
计算机改名导致数据库链接的诡异问题
查看>>
Windows 8 操作系统 购买过程
查看>>
软件工程课程-个人编程作业
查看>>
Java8内存模型—永久代(PermGen)和元空间(Metaspace)(转)
查看>>
ObjectiveC基础教程(第2版)
查看>>
centos 引导盘
查看>>
Notes of Daily Scrum Meeting(12.8)
查看>>
Apriori算法
查看>>