-
.setOnClickListener(OnClickListener) 监听事件实现的写法: 1.匿名内部类的实现 2.独立类的实现 3.实现接口的方式查看全部
-
ImageView: android:src="@drawable/ic_launcher" android:background="@drawable/ic_launcher"查看全部
-
布局中的weight=1是一个控件对于父容器的比例值查看全部
-
复习用,gravity属性。 决定子类的xy坐标位置。查看全部
-
在线性布局中,所有的控件要么就是横向排布,要么就是纵向排布,具体怎么排布有orientation属性决定,(vertical:纵向;horizontal:横向)查看全部
-
RelativeLayout相对布局中子类控件相对子类控件的位置查看全部
-
onCheckedChanged(RadioGroup group, int checkedId) 其中的checkedId表明了那个RadioButton被选中查看全部
-
在RadioGroup中,如果有多个按钮时,那个按钮的checked属性设置为true则表示那个按钮被选定了。查看全部
-
RadioButton的集合为RadioGroup,它是多选一的一个单选框。他有一个重要的属性orientation,表明排布方式,vertical垂直,horizontal水平查看全部
-
单独的RadioButton如果选下去就不能取消选择了,所以不建议单独使用RadioButton。查看全部
-
CheckBox的checked属性默认为false查看全部
-
CheckBox控件和c#中的类似,也有选中和未选中状态,而且CheckBox控件的选中状态是由android:checked属性控制的,当checked为true时为被选中,如果为false为未被选中。查看全部
-
很好查看全部
-
看到3分27秒查看全部
-
TextView和EditText常用属性 android:id android:layout_height android:layout_width android:text android:textSize android:textColor android:background EditText属性 android:hint android:inputType查看全部
举报
0/150
提交
取消