- 博客(7)
- 资源 (2)
- 收藏
- 关注
原创 CheckBox的简单使用
能实现的方法很多,在这里仅仅展示自己比较常用的一种方法 XML布局: <?xml version="1.0" encoding="utf-8"?> <android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android&a
2019-02-08 15:19:11 1428
原创 Radiobutton的简单使用
RadioButton是单选按钮,但实际上,需要RadioGroup包含才能实现单选,而且在实践中发现即使RadioButton在同一个RadioGroup下,但内嵌在布局中,都不能实现单选的作用,如下: <?xml version="1.0" encoding="utf-8"?> <android.support.
2019-02-08 14:49:32 8561
原创 Android基本组件
公共属性: android:layout_width=" " //宽 android:layout_height=" " //高 android:id=" " //id android:background==" " //背景 android:text=" " //文字 android:textSize //设置文字大小,推荐度量单位”sp”,如”15sp” android...
2019-02-07 21:00:57 188
原创 六大布局
公共属性: android:layout_width=" " //宽 android:layout_height=" " //高 android:layout_weight=" " //比重 如.10,全部加起来为1 android:id=" " //id android:background==" " //背景 LineaLayout线性布局 android:orientatio...
2019-02-07 21:00:08 213
原创 ToggleButton(开关按钮),Switch(开关)简单使用
太简单只贴java代码 private ToggleButton tg1; private Switch w1; tg1=findViewById(R.id.t1); w1=findViewById(R.id.w1); w1.setOnCheckedChangeListener(new CompoundButton.OnChecked...
2019-02-07 20:59:05 1399
原创 GridView的简单使用
##此方法是使用自带适配器实现 gridview.xml <?xml version="1.0" encoding="utf-8"?> <android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_...
2019-02-07 20:46:50 278
原创 Android总结整理(一、总概)
一、 六大布局 公共属性: android:layout_width=&quot; &quot; //宽 android:layout_height=&quot; &quot; //高 android:layout_weight=&quot; &quot; //比重 如.10,全部加起来为1 android:id=&quot; &quot; //id android:ba
2019-02-07 18:50:15 150
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人