mac androdid 快捷键
-- Command () : ⌘ ;
-- Control : ⌃ ;
-- Option (alt) : ⌥ ;
-- Shift : ⇧ ;
-- Caps Lock : ⇪ ;
⌘F: 在当前编辑文件中查找
option+command+L//整理代码
control+shift+F//全局搜索
control+option+space//代码提示
布局分为线性布局:LinearLayout和相对布局:RelativeLayout
线性布局:LinearLayout
常用属性
android:id 标识"@+id/"
android:layout margin 外边距
android:layout_padding 内边距
android:layout_width 宽match_parent匹配父控件
android:layout_height 高
android:orientation 方向 vertical
android:background 背景
android:layout_weight 权重
android:layout_gravity 对齐方式center
android:layout_weight="1"
android:layout_weight="2"
权重:把屏幕剩余部分分为1和2
相对布局:RelativeLayout
android:layout_toLeftOf 在谁的左边
android:layout_toRightOf 在谁的右边
android:layout_below 在谁的下边 android:layout_below="@+id/View"
android:layout_alignBottom 跟谁底部对齐true
android:layout_alignParentBottom 跟父控件底部对齐
TextView
android:id = "@id/mytextview"
android:textsize = "24sp"//字体用sp,其他尺寸用dp
android:maxlines = "1" android:ellipsize= "end"//显示不下...显示
android:drawableRight="@drawable/drawablesx" android:drawablePadding="10dp"//文字和图片共同组成的按钮
java里修改页面属性
tv_3.getPaint().setFlags(Paint.STRIKE_THRU_TEXT_FLAG);//中划线
tv_4.setText(Html.fromHtml("<u>html加载</u>"));//html加载
Button
新建drawable resource file文件选择shape为按钮创建圆角,在android:background="@drawable/circleradius"引用
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid android:color="#ff9900" />
<corners android:radius="10dp">
</corners>
</shape>
线圆角
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
<stroke android:width="1dp"
android:color="#FF9900">
</stroke>
<corners android:radius="10dp"/>
</shape>
按钮按压背景色变化
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="true">
<shape>
<solid android:color="#ff9900" />
<corners android:radius="10dp">
</corners>
</shape>
</item>
<item android:state_pressed="false">
<shape>
<solid android:color="#000000" />
<corners android:radius="10dp">
</corners>
</shape>
</item>
</selector>
imageview
加载网络图片用“glide”组件,如果不用gradle,需要载到本地放在libs里
RecycleView 数组列表可复用,可以用在列表网格瀑布流,通过viewhodle实现item多元化