
Android
Android 实战
說詤榢
苦而不言,喜而不语。
展开
-
沉浸式状态栏
点击直接下载https://github.com/fakerlove1/Demo2记得多多点赞,fork !!!!!原创 2019-12-29 19:04:44 · 179138 阅读 · 0 评论 -
gson 解析 时间类型
GsonBuilder builder = new GsonBuilder();// Register an adapter to manage the date types as long values builder.registerTypeAdapter(Date.class, new JsonDeserializer<Date>() { ...原创 2019-12-28 16:56:51 · 205500 阅读 · 0 评论 -
android okhttp+解析json( okhttp 工具类)
2019.12.28更新注意点:1.只需要在AndroidManifest.xml application 属性中添加 ,就可以访问 http,而不是httpsandroid:usesCleartextTraffic="true"2.检查项目网络权限有没有开3.检查模拟机网络权限有没有开4.卸载软件,点击重新安装。我选择的免费的接口https://api....原创 2019-11-11 21:45:53 · 205054 阅读 · 1 评论 -
android中的广播机制(动态注册)
1.activity_case1.xml<?xml version="1.0" encoding="utf-8"?><androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http...原创 2019-11-10 21:04:31 · 204003 阅读 · 0 评论 -
android中Sqlite数据库存储
1.activity_sql.xml<?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" ...原创 2019-11-10 20:47:33 · 179624 阅读 · 0 评论 -
android中的SharedPreferences存储
1.activity_shared_perference.xml<?xml version="1.0" encoding="utf-8"?><RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/...原创 2019-11-10 20:42:46 · 192213 阅读 · 0 评论 -
android中的横幅通知
1.这个是点击按钮notice,然后按钮发送一个横幅通知,如果不想实现的话,可以剪切Onclick里面的内容notice = findViewById(R.id.notice);notice.setOnClickListener(new View.OnClickListener() { @Override public void onCli...原创 2019-11-10 20:36:50 · 194528 阅读 · 0 评论 -
android 中RecyclerView 嵌套了 GridView 的用法
提醒一下RecyclerView 安卓自带的当中是没有的,所以需要导入包的。android.support.v4.widget.SwipeRefreshLayout 中的v7,v4都已经变成 androidx了。希望大家注意android 由于升级 所以build.gradle中是添加, implementation 'androidx.recyclerview:recycl...原创 2019-11-04 19:25:50 · 200563 阅读 · 0 评论 -
android 中的 gridview 的用法
两个布局文件actity_main.xml<?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-aut...原创 2019-11-04 19:10:32 · 195264 阅读 · 0 评论