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

2月4日所学内容

时间:2020-02-04 20:10:17      阅读:79      评论:0      收藏:0      [点我收藏+]

标签:scaletype   tor   需要   man   you   drawable   bool   show   family   

今天观看视频学习了RadioButton、复选框CheckBox、ImangeView;

1、常用属性

<RadioGroup>

 <RadioButton

android:button="@null" 没有圆圈

android:gravity="center" 居中显示

android:background="@drawable/selector_cheng">

2、自定义样式

3、监听事件

复选框

 <CheckBox

        android:id="@+id/cb_2"

        android:layout_width="wrap_content"

        android:layout_height="wrap_content"

        android:layout_below="@id/cb_1"

        android:text="跑步"

        android:textSize="18dp"/>

监听事件:

 mcb2=(CheckBox)findViewById(R.id.cb_2);

        mcb2.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {

            @Override

            public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {

                Toast.makeText(CheckBoxActivity.this,isChecked?"选中":"未选中",Toast.LENGTH_LONG).show();

            }

        });

ImageView:加载网络图片

src里面的内容可以是图片

Background里面可以是颜色也可以是图片

ScaleType:图片在这里面的形式

 

Glide:加载网络图片需要声明网络权限 

 

2月4日所学内容

标签:scaletype   tor   需要   man   you   drawable   bool   show   family   

原文地址:https://www.cnblogs.com/1234yyf/p/12260629.html

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