
android
那年高三今日尝
要结婚了,就要 有大人的 样子; 以前错过的时光,现在要补上; 晚上学习java,swift,oc语法; 早上看IOS开发; 以后多写日志,多写心得
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
android View属性查阅表
View 类 xml属性,相关方法原创 2017-03-18 15:37:07 · 557 阅读 · 0 评论 -
android:TextView备忘
1.基本属性使用 <!--设置文本框--> <TextView android:layout_width="match_parent" android:layout_height="wrap_content" android:text="我爱java" android:textSize="20sp" and原创 2017-03-21 22:37:59 · 471 阅读 · 0 评论 -
android:EditText备忘
<TextView android:layout_width="match_parent" android:layout_height="wrap_content" android:text="用户名:" android:textSize="16sp" /><EditText android:layout_width="match_parent"原创 2017-03-21 23:01:35 · 287 阅读 · 0 评论 -
android:Button备忘
Button //设置Btdn显示的文本 //用xml方式设置btn的点击响应事件 android:onClick="btnDidClicked" //设置btn的selector,点击下不同状态的显示 <Button android:layout_width="wrap_content" android:layout_height="w原创 2017-03-22 00:27:35 · 430 阅读 · 0 评论 -
android:RadioGroup RadioButton CheckBox备忘
xml文件<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent"原创 2017-03-22 21:14:22 · 362 阅读 · 0 评论 -
Android Button 常用属性设置,圆角,边框,点击事件
<Button <!--设置代表此button的id--> android:id="@+id/btn" android:layout_width="200dp" android:layout_height="200dp" <!--设置btn上显示的文字--> android:text="QQ"原创 2019-07-08 16:06:46 · 31922 阅读 · 3 评论