上一页 1 2 3 4 5 6 ··· 25 下一页
摘要: 效果图: 效果图 布局文件: 添加 android:fitsSystemWindows="true" 父布局文件添加属性 注册清单: 整个布局都顶上去 AndroidManifest.xml 添加 android:windowSoftInputMode="adjustResize|stateHidd 阅读全文
posted @ 2023-08-31 15:34 remix_alone 阅读(26) 评论(0) 推荐(0)
摘要: 垂直:ScrollView 横向:HorizontalScrollView ScrollView外层搭配RelativeLayout更灵活: 让ScrollView能Height=“match_parent”同时,above底部布局从而不会覆盖底部 <?xml version="1.0" encod 阅读全文
posted @ 2023-08-31 15:31 remix_alone 阅读(30) 评论(0) 推荐(0)
摘要: 自定义圆形图片 package com.example.mybabytracker.util; import android.content.Context; import android.graphics.Bitmap; import android.graphics.BitmapShader; 阅读全文
posted @ 2023-08-31 15:23 remix_alone 阅读(8) 评论(0) 推荐(0)
摘要: SwitchMaterial:开关选择器布局: <com.google.android.material.switchmaterial.SwitchMaterial android:id="@+id/switch_time" android:layout_width="wrap_content" a 阅读全文
posted @ 2023-08-31 15:21 remix_alone 阅读(269) 评论(0) 推荐(0)
摘要: LinearProgressIndicator: 条状加载进度条 <!-- Linear progress indicator 不确定指示器:android:indeterminate="true"进度条背景色:app:trackColor进度条颜色:app:indicatorColor --> < 阅读全文
posted @ 2023-08-31 14:58 remix_alone 阅读(114) 评论(0) 推荐(0)
摘要: 地址: implementation 'com.yanzhenjie.recyclerview:x:1.3.2' 使用: 1.SwipeRecyclerView继承于RecyclerView,设置Adapter和基础操作与RecyclerView一致 2. 侧滑菜单 分为:大菜单,左右区域菜单,小菜 阅读全文
posted @ 2023-08-31 14:24 remix_alone 阅读(537) 评论(0) 推荐(0)
摘要: 环境变量 ANDROID_SDK_HOME D:\AndroidSDK\AVD 阅读全文
posted @ 2023-08-26 20:27 remix_alone 阅读(16) 评论(0) 推荐(0)
摘要: ImageView: app:tint=“” (tint:染色) 作用:将非透明像素点染成指定颜色 EditText: 属性 android : selectAllOnFocus = "true" 作用:输入框获取焦点后,获取到所有文本内容 android:inputType = "phone" a 阅读全文
posted @ 2023-07-28 10:48 remix_alone 阅读(61) 评论(0) 推荐(0)
摘要: resource->values->strings.xml里定义字符串 定义单字符串: <string name="app_name">abc123</string> 定义字符串数组: <string-array name="map_style_array"> <item>MAPBOX_STREET 阅读全文
posted @ 2023-07-28 09:59 remix_alone 阅读(142) 评论(0) 推荐(0)
摘要: 单例模式 意图:这种模式涉及到一个单一的类,该类负责创建自己的对象,同时确保只有单个对象被创建。这个类提供了一种访问其唯一的对象的方式,可以直接访问,不需要实例化该类的对象。 public class Singleton { private static Singleton instance = n 阅读全文
posted @ 2023-07-28 09:53 remix_alone 阅读(22) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 ··· 25 下一页