在学习《Android编程权威指南》时,按书中要求添加com.android.support:appcompat的依赖,然后编译不通过,提示如下问题: 大概意思是,Android Pie之前支持这个库,我们建议迁移到AndroidX libraries…… 然后搜索了一下,原来2018年google ...
分类:
移动开发 时间:
2020-02-04 15:51:38
阅读次数:
105
一、目标 以QQ登陆为例,继续完成昨天没有完成的任务,实现数据的存储和回显读取,并且学会往SD卡内存储信息 二、源程序代码 package com.example.qq_logindemo; import androidx.appcompat.app.AppCompatActivity; impor ...
分类:
移动开发 时间:
2020-02-03 19:03:17
阅读次数:
68
MainActivity.java package com.example.logindemo; import androidx.appcompat.app.AppCompatActivity; import android.os.Bundle; public class MainActivity ...
分类:
移动开发 时间:
2020-01-30 22:39:34
阅读次数:
126
测试回调代码 package com.example.hello; import androidx.appcompat.app.AppCompatActivity; import android.os.Bundle; import android.util.Log; public class Mai ...
分类:
移动开发 时间:
2020-01-30 20:59:08
阅读次数:
101
(一)ImageButton和ImageView ImageButton与Button的功能完全相同,只是ImageButton上显示的是图像,并且每个ImageButton组件都必须指定一个id,以便在程序中使用该按钮, android:src属性则是用来设置它显示的图像 ImageView是一个 ...
分类:
移动开发 时间:
2020-01-29 22:01:28
阅读次数:
101
MainActivity中的代码,要先导入架包 package com.example.broadcasttest; import androidx.appcompat.app.AppCompatActivity; import android.content.BroadcastReceiver; ...
分类:
其他好文 时间:
2020-01-28 17:10:09
阅读次数:
100
新建一个Fragment的过程 package com.example.myactivityiiii; import android.os.Bundle; import android.view.LayoutInflater; import android.view.View; import and ...
分类:
移动开发 时间:
2020-01-27 17:33:41
阅读次数:
102
布局文件 <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android ...
分类:
移动开发 时间:
2020-01-25 22:00:31
阅读次数:
116
日历,时钟,计时器 package com.example.mybaseuii; import androidx.appcompat.app.AppCompatActivity; import android.app.Activity; import android.os.Bundle; impor ...
分类:
移动开发 时间:
2020-01-24 12:05:26
阅读次数:
112
常用属性,界面跳转,按钮学习,按压颜色的变换,图片的插入学习等 工程目录: MainActivity.java: package com.example.revrse; import androidx.appcompat.app.AppCompatActivity; import android.c ...
分类:
其他好文 时间:
2020-01-23 16:48:44
阅读次数:
88