标签: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:加载网络图片需要声明网络权限
标签:scaletype tor 需要 man you drawable bool show family
原文地址:https://www.cnblogs.com/1234yyf/p/12260629.html