每日总结
Posted chenghaixinag
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了每日总结相关的知识,希望对你有一定的参考价值。
1.今天学习了ImageView(图像视图)和RadioButton&Checkbox
<RadioGroup
android:id="@+id/radioGroup"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal">
<RadioButton
android:id="@+id/btnMan"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="男"
android:checked="true"/>
<RadioButton
android:id="@+id/btnWoman"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="女"/>
</RadioGroup>
以上是关于每日总结的主要内容,如果未能解决你的问题,请参考以下文章