1. android:focusableInTouchMode="true" 属性: 控制 子view不获取焦点; <android.support.v4.widget.SwipeRefreshLayout android:id="@+id/swipe_refresh" android:layout ...
分类:
移动开发 时间:
2019-12-18 11:19:42
阅读次数:
96
<EditText android:id="@+id/alertdialog_zhuan_zeng_friend_phone_Edt" android:layout_width="match_parent" android:layout_height="40dp" android:textCurso ...
分类:
移动开发 时间:
2019-12-14 11:57:44
阅读次数:
119
Xml文件<com.amap.api.maps.MapView xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/mapView" android:layout_width="match_paren ...
DrawerLayout 默认使用时,侧拉出来的效果会有一点缩进效果,既然它是缩进,那我们直接反向操作,给它缩进一个负值不就好了嘛,直接看代码: <!-- 第二个视图放抽屉 --> <android.support.design.widget.NavigationView android:id="@ ...
分类:
其他好文 时间:
2019-08-03 21:59:06
阅读次数:
251
1,在Activity活动对应的布局文件(layout.xml)中的LinearLayout标签下写如下代码(引用代码时请将注释去掉) <Button android:id="@+id/button_1"//"+"代表添加一个id。其他部分是引用一个ID名为button_1。 <!--设置宽高--> ...
分类:
移动开发 时间:
2019-07-06 00:40:33
阅读次数:
138
<Button android:id="@+id/delete_btn" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="删除"/> <Button android:id=" ...
分类:
移动开发 时间:
2019-06-10 09:24:51
阅读次数:
253
关于布局绝大部分使用线性布局和相对布局LinearLayout线性布局android:id 标识,找到空间"@+id/"android:layout_width 宽度android:layout_height 高度 match_parent 匹配副空间dp 单位 android:background... ...
分类:
移动开发 时间:
2019-04-13 15:12:39
阅读次数:
168
<ProgressBar android:id="@+id/pbNormal" android:layout_width="match_parent" android:layout_height="wrap_content" /> 二、有进度的ProgressBar 设置进度java文件 final ...
分类:
其他好文 时间:
2019-03-23 16:17:39
阅读次数:
176
查看设备信息 查看手机型号 查看电池状况 查看分辨率 查看屏幕密度 查看显示屏参数 查看android_id 查看IMEI 在 Android 4.4 及以下版本可通过如下命令获取 IMEI: 而在 Android 5.0 及以上版本里这个命令输出为空,得通过其它方式获取了(需要 root 权限): ...
分类:
移动开发 时间:
2019-03-04 19:04:45
阅读次数:
2315
一、ProgressBar <ProgressBar android:id="@+id/progress_bar" android:layout_width="match_parent" android:layout_height="wrap_content" /> int progress = p ...
分类:
移动开发 时间:
2018-11-28 12:19:47
阅读次数:
240