
安卓基础学习
we1less
学习
展开
-
自定义view 属性
例子sdk路径C:\Users\TANG\AppData\Local\Android\Sdk\platforms\android-30\data\res\valuesattrs.xml 中参考属性 同时在as中增加同名xml<?xml version="1.0" encoding="utf-8"?><resources> <declare-styleable name="godvAtt"> <attr name="gv_ti...原创 2021-01-21 22:47:14 · 194 阅读 · 2 评论 -
自定义view
package com.example.godvlean;import android.content.Context;import android.graphics.Canvas;import android.graphics.Color;import android.graphics.Paint;import android.graphics.Typeface;import android.graphics.drawable.ShapeDrawable;import android.g.原创 2021-01-20 23:01:27 · 105 阅读 · 0 评论 -
android属性动画使用 / bitmap api / shap使用 / selector使用
ObjectAnimator objectAnimator = ObjectAnimator.ofFloat(mImageView,"translationY", 0,view.getWidth()); objectAnimator.setDuration(3000);// objectAnimator.start(); ObjectAnimator objectAnimator2 = ObjectAnimator.o...原创 2021-01-16 22:06:07 · 344 阅读 · 0 评论 -
AsyncTask的使用
MainActivitypackage com.example.threadlean;import androidx.appcompat.app.AppCompatActivity;import android.content.Context;import android.os.AsyncTask;import android.os.Bundle;import android.view.View;import android.widget.ProgressBar;import an.原创 2021-01-15 00:03:07 · 2699 阅读 · 4 评论 -
MakeFIle
例子main.c#include <stdio.h>#include "util.h"int main(){ printf("hello , getNumber() = %d\n",getNumber()); return 0;}util.c#include "util.h"int getNumber(){ return 2;}util.hint getNumber();MakeFile SimpleMakefi...原创 2020-09-10 20:28:35 · 116 阅读 · 0 评论 -
安卓adb多用户操作
查看用户列表adb shell pm list users创建新用户adb shell pm create-user [–profileOf USER_ID] [–managed] USER_NAMEadb shell pm create-user 10 godv启动和切换用户adb shell am switch-user USER_IDadb shell am start-user USER_ID安装应用到某个用户下adb install –user USER原创 2020-08-28 15:48:30 · 11430 阅读 · 0 评论 -
showNotification
String id = "channel_1"; String description = "USB Action"; int importance = NotificationManager.IMPORTANCE_HIGH; NotificationManager mManage = (NotificationManager) context.getSystemService(NOTIFICATION_SERVICE); .原创 2020-08-27 16:10:19 · 482 阅读 · 0 评论 -
判断usb插拔广播的形式
private void registeUsbActionReceiver(Context context) { final UsbActionReceiver usbActionReceiver = new UsbActionReceiver(); IntentFilter intentFilter = new IntentFilter(); intentFilter.addDataScheme("file"); intentFilter..原创 2020-08-27 11:13:02 · 268 阅读 · 0 评论 -
一个标准的service使用方法 附带notification用法
main_activityimport androidx.appcompat.app.AppCompatActivity;import androidx.core.app.NotificationCompat;import android.app.Notification;import android.app.NotificationChannel;import android.app.NotificationManager;import android.app.PendingIntent原创 2020-08-25 09:41:35 · 1167 阅读 · 0 评论 -
完整版MVP框架
BaseActivityimport android.os.Bundle;import android.os.RemoteException;import androidx.appcompat.app.AppCompatActivity;public abstract class BaseActivity<V extends BaseView, P extends BasePresenter<V>> extends AppCompatActivity { pr原创 2020-08-24 10:23:02 · 1831 阅读 · 0 评论 -
基于MVP设计模式的SP存储与读取
1.Model类 用来专门进行数据库操作,文件操作,网络操作等相关import android.content.Context;import android.content.SharedPreferences;public class SpModel { private SharedPreferences.Editor mEdit; //进行注册操作 public boolean register(String name, String pwd, Context..原创 2020-08-14 22:16:42 · 233 阅读 · 0 评论 -
Service与Activity之间通信
https://blog.youkuaiyun.com/xiaanming/article/details/9750689#commentBox这个讲的太好了直接看这个吧转载 2020-08-13 17:15:57 · 544 阅读 · 0 评论 -
相对布局常用属性
android:layout_centerHorizontal:设置该控件是否位于父容器的水平居中位置; android:layout_centerVertical:设置该控件是否位于父容器的垂直居中位置; android:layout_centerInParent:设置该控件是否位于父容器的正中央位置; android:layout_alignParentTop:设置该控件是否位于父容器顶端对齐; android:layout_alignParentBottom:设置该控件是否与父容器底端对齐;原创 2020-08-12 12:21:33 · 1508 阅读 · 0 评论 -
Handler实现计数器
xml<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical" > <T原创 2020-08-09 18:50:52 · 412 阅读 · 0 评论 -
使用Handler实现异步工作 -- 弱引用写法
本篇在https://blog.youkuaiyun.com/we1less/article/details/107892391上一篇的基础上进行对比权限 <uses-permission android:name="android.permission.INTERNET" />httpandroid:usesCleartextTraffic="true"布局<?xml version="1.0" encoding="utf-8"?><LinearLayou原创 2020-08-09 18:07:39 · 357 阅读 · 0 评论 -
访问远程服务器 之 httpUrlConnection(原生)OkHttp(框架)volley(框架)
注意访问网络必须在分线程执行xml布局文件<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="ver原创 2020-08-09 16:36:54 · 950 阅读 · 0 评论 -
mediaProvider获取系统图片
首先开权限<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />但是实际上还需要动态申请权限package com.example.mediaeidaprovierdemo;import android.Manifest;import android.content.ContentResolver;import android.content.ContentValues;i原创 2020-08-08 21:00:45 · 716 阅读 · 0 评论 -
SP存储
sp存储专门用来存储一些单一的小数据存储数据的类型 boolean float int long String数据保存的路径/data/data/xxx(packageName)/shared_prefs/xxx.xmlxml<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:l原创 2020-08-08 16:16:24 · 1056 阅读 · 0 评论 -
ContentProvider(查询 插入 修改 删除 )
注意 本篇实在sqlite的基础上编写的所以建议首先了解sqlite首先建立两个模块ContentProvider ContentResolverContentProvider 里面需要建立表和建立连接 所以在这里需要建立DBHelp类DBHelp代码如下所示import android.content.Context;import android.database.sqlite.SQLiteDatabase;import android.database.sqlite.S...原创 2020-08-08 12:38:28 · 2655 阅读 · 0 评论 -
sqlite简单使用
工程结构图创建DBHelp继承SQLiteOpenHelperimport android.content.Context;import android.database.sqlite.SQLiteDatabase;import android.database.sqlite.SQLiteOpenHelper;public class DBHelper extends SQLiteOpenHelper { public DBHelper(Context context, i.原创 2020-08-06 23:48:15 · 282 阅读 · 0 评论 -
Service后台播放音乐实例
首先展示代码结构图首先在res里建立raw文件用来存放音频文件 这里注意如果写代码过程中发现raw文件引用不到 就build-clear project 一下编写main-xml文件<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_par原创 2020-08-04 21:42:21 · 443 阅读 · 0 评论 -
androidx+viewpage+tablayout+json+加载图片+加载视频
本文针对androidx完成任务 之前文的sdk版本陈旧 首先列举本文的代码结构图将json数据放进本地assent路径下用于读取首先创建实体类用于解析json 这段可以去在线解析网站生成实体类需要注意的一点就是实体类需要实现可序列化接口 由于实体类中成员变量过多这里暂时不粘贴代码public class Godv implements Serializable接下来写整个应用的布局main-xml<?xml version="1.0" encoding="utf-原创 2020-08-04 13:59:05 · 675 阅读 · 0 评论 -
远程ServiceAIDL通信
1.新建远程服务器端继承Service类import android.app.Service;2.在AndroidManifest.xml配置 具体位置参见前篇文action name本质上就是一个字符串没有特殊要求<service android:name=".servicedemo.RemoteService"> <intent-filter> <action android:name="com.e原创 2020-08-04 00:38:53 · 259 阅读 · 0 评论 -
viewpager+fragement选项卡绘制
此选项卡可以配合fragment显示数据 就是之前做的那个main_activity.javapublic class MainActivity extends FragmentActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.act原创 2020-08-02 22:53:12 · 282 阅读 · 0 评论 -
本地Service的启动与销毁-绑定与解绑
main-xml<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical">原创 2020-08-02 14:49:31 · 1178 阅读 · 0 评论 -
Broadcast发送有序广播
这里一般和有序的代码全部罗列出来 但本章侧重于关注有序广播的发送与接收内容发送端main-xml<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent"原创 2020-08-02 12:12:34 · 405 阅读 · 0 评论 -
Broadcast创建动态广播
其实本节与静态结构区别不大首先创造接收类继承BroadcastReceiverpublic class MyR2eceive extends BroadcastReceiver { @Override public void onReceive(Context context, Intent intent) { String message = intent.getStringExtra("MESSAGE"); Log.i("godv", "MyR2原创 2020-08-02 11:32:43 · 354 阅读 · 0 评论 -
Broadcast创建静态广播
首先创造接收类继承BroadcastReceiverimport android.content.BroadcastReceiver;import android.content.Context;import android.content.Intent;import android.util.Log;public class MyR1eceive extends BroadcastReceiver { @Override public void onReceive(Cont原创 2020-08-02 10:59:43 · 474 阅读 · 0 评论 -
ListView-baseAdapter+操作item内部控件
样式图+工程结构图main-xml<?xml version="1.0" encoding="utf-8"?><ListView android:id="@+id/lv_main_show" xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_pa.原创 2020-08-01 21:42:15 · 331 阅读 · 0 评论 -
ListView-simpleAdapter
样式图+工程结构图main-xml<?xml version="1.0" encoding="utf-8"?><ListView android:id="@+id/lv_main_show" xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_pa.原创 2020-08-01 21:07:39 · 275 阅读 · 0 评论 -
ListView-arrayAdapter
main-xml<?xml version="1.0" encoding="utf-8"?><ListView android:id="@+id/lv_main_show" xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent"><原创 2020-08-01 20:50:15 · 219 阅读 · 0 评论 -
安卓常用View(四)
本篇常用的View如图中所示:xml布局代码<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orient...原创 2020-08-01 18:17:42 · 284 阅读 · 0 评论 -
安卓常用View(三)
本篇常用的View如图中所示:xml布局代码<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="原创 2020-08-01 17:22:37 · 924 阅读 · 0 评论 -
安卓常用View(二)
本篇常用的View如图中所示:xml布局代码<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientati原创 2020-08-01 17:03:00 · 237 阅读 · 0 评论 -
安卓常用View(一)
本篇常用的View如图中所示:xml布局代码<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation=.原创 2020-08-01 16:41:38 · 553 阅读 · 0 评论 -
Fragment解析json和加载网络资源图片
注意!这篇是在上一篇的基础上整合的。其他代码参考上一篇文章!数据准备与实体类构建部分实体类public class Godv implements Serializable { private String name; private int age; private String img; public Godv() { } public Godv(String name, int age, String img) { th原创 2020-08-01 12:54:37 · 635 阅读 · 0 评论 -
Fragment切换(接口式)与Activity通信实例
首先先将最后的整个模块结构图展示一下:由图片可知建立了四个Fragment用来切换。准备工作首先建立四个Fragment类并继承Fragment(android.support.v4.app.Fragment)视版本而定。再建立四个相对应的Fragment的xml布局。xml布局代码:<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/ap原创 2020-08-01 10:58:19 · 1050 阅读 · 0 评论 -
ListFragment的简单使用
public class DataUtils { public static final String[] TITLES = {"title1", "title2", "title3", "title4", "title5"}; public static final String[] DETAILS = {"this is title1", "this is title2", "this is title3", "this is title4", "this is title5"};}.原创 2020-07-30 23:35:47 · 1343 阅读 · 0 评论 -
Intent的一般启动返回与带回调的启动与返回代码实现
两种方式1.一般启动与带回调启动首先绘制界面<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="v.原创 2020-07-29 22:21:33 · 741 阅读 · 0 评论 -
手机外部文件存储_写入/读取文件(SD卡)
1.写入文件需要开启权限权限的写入位置在:AndroidManifest.xml添加权限如下:<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>此时开始写入文件if (Environment.getExternalStorageState().equals(Environment.MEDIA_MOUNTED)) {//判断是否具有SD卡 String fil..原创 2020-07-29 21:03:58 · 1102 阅读 · 2 评论