2月4日所学内容

Posted 1234yyf

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了2月4日所学内容相关的知识,希望对你有一定的参考价值。

今天观看视频学习了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日所学内容的主要内容,如果未能解决你的问题,请参考以下文章

2018年12月26日所学内容

4月11日下午学习日志

4月12日上午学习日志

4月10日上午学习日志

4月10日下午学习日志

2017年4月1日上午学习日志