安卓
紧张的无痕
这个作者很懒,什么都没留下…
展开
-
Android性别选择器和日期选择器
性别选择器layout布局文件中简单的放个控件<TextView android:id="@+id/information_sex" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="保密" app:layout原创 2021-07-09 10:18:39 · 2328 阅读 · 6 评论 -
安卓学习笔记-RecyclerView使用Glide加载网络图片瀑布流失效的情况以及瀑布流item间距设置
瀑布流失效问题RecycleView瀑布流用Glide加载网络图片会导致瀑布流失效,因为不知道网络加载的图片具体高度是多少;这时候我们可以手动设置图片高度,随机值,这样瀑布流就能正常使用了@Override public void onBindViewHolder(@NonNull ViewHolder holder, int position) { ResultBeanData.ResultBean.HotInfoBean hotInfoBean = datas.get(.原创 2021-05-15 21:28:02 · 927 阅读 · 0 评论 -
安卓学习笔记-Fragment-基本使用
内容原创 2021-05-09 21:19:13 · 152 阅读 · 0 评论 -
安卓学习笔记-Activity
内容跳转数据的传递public class AActivity extends AppCompatActivity { private Button AJumpB; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_a原创 2021-05-09 19:27:47 · 113 阅读 · 0 评论 -
安卓学习笔记-视图-RecyclerView(三)瀑布流布局管理器
//item用卡片视图布局来做<?xml version="1.0" encoding="utf-8"?><androidx.cardview.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="wrap_content" android:layout_height="wrap_content" xmlns:app="h.原创 2021-05-09 14:55:21 · 127 阅读 · 0 评论 -
安卓学习笔记-视图-RecyclerView(二)网格布局管理器
//创建一个recyclerView<?xml version="1.0" encoding="utf-8"?><RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" an.原创 2021-05-09 14:23:47 · 204 阅读 · 0 评论 -
安卓学习笔记-视图-RecyclerView(一)线性布局管理器
<?xml version="1.0" encoding="utf-8"?><RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width=.原创 2021-05-09 13:18:57 · 224 阅读 · 0 评论 -
安卓学习笔记-控件-ImageView
内容scaleType属性原创 2021-05-09 11:14:26 · 119 阅读 · 0 评论 -
安卓学习笔记-控件-CheckBox
内容代码<?xml version="1.0" encoding="utf-8"?><RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:lay原创 2021-05-09 10:58:15 · 75 阅读 · 0 评论 -
安卓学习笔记-控件-RadioButton
内容<?xml version="1.0" encoding="utf-8"?><RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout.原创 2021-05-09 10:30:49 · 119 阅读 · 0 评论 -
安卓学习笔记-控件-EditTextView
内容代码<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layou原创 2021-05-08 23:10:59 · 200 阅读 · 0 评论 -
安卓学习笔记-控件-button(按钮背景颜色设置不生效问题)
内容button继承了TextView代码<?xml version="1.0" encoding="utf-8"?><RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/too原创 2021-05-08 21:48:29 · 3928 阅读 · 4 评论 -
安卓学习笔记-控件-TextView
内容代码<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layo.原创 2021-05-08 20:48:11 · 164 阅读 · 0 评论 -
安卓学习笔记-布局-RelativeLayout相对布局
最常用属性<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" //定义一个相对布局 里面的子类默认都是重合在一起的 因为是相对的 xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="m原创 2021-05-08 19:24:21 · 114 阅读 · 0 评论 -
安卓学习笔记-布局-LinearLayout
最常用属性代码<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" //宽度匹配父容器 andro原创 2021-05-08 19:05:24 · 229 阅读 · 1 评论