摘要:
<?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" 阅读全文
摘要:
<?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" 阅读全文
摘要:
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/ 阅读全文
摘要:
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" an 阅读全文
摘要:
repositories { google() mavenCentral() } dependencies { implementation 'com.github.bumptech.glide:glide:4.13.0' annotationProcessor 'com.github.bumpte 阅读全文
摘要:
ImageView主要用于显示图像资源,Bitmap或Drawable资源,同时也常用于图片渲染调色,图片缩放剪裁等 src属性 编辑内容 可以放置图片 scaleType图片缩放类型fitXY为填满空间 <ImageView android:id="@+id/Igv_1" android:layo 阅读全文
摘要:
layout层 <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_pa 阅读全文
摘要:
RadioButton是圆圈按钮 主要属性与Button类似,例如在性别选择上的运用 用要到RadioGroup 将同组RadioButton放在同一个RadioGroup里即可实现单选 <RadioGroup android:layout_width="wrap_content" android: 阅读全文
摘要:
CheckBox为复选框 <TextView android:id="@+id/tv_1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="你会哪些移动开发:" androi 阅读全文
摘要:
<stroke android:width="2dp" android:color="#999999" /> <corners android:radius="10dp" /> 阅读全文