- 博客(10)
- 收藏
- 关注
原创 Android接入Replugin插件框架
插件接入到我们的项目中了,记得同步一下。接下来,我们写一个demo,实践一下。文件里面的主题给切换了,和上面一样,这里就不详细描述了。这样宿主代码编写完成,接下来我们编写插件apk的代码。需要注意,上面这段代码需要在Android闭包下,模块,点击Android studio最上栏的。Android studio中右上角会提示。这样就完成了Replugin框架的接入。,把其他不存在的颜色删除,就可以了。需要注意的是,我们前面把项目下的。的版本不能太高,否则不兼容。
2023-05-29 16:58:59 883 3
原创 Anroid Apps targeting Android 12 and higher are required to specify an explicit value
Manifest merger failed : Apps targeting Android 12 and higher are required to specify an explicit
2021-12-06 14:34:30 2286
原创 关于android Execution failed for task ‘:app:processDebugManifest‘问题
Attribute application@appComponentFactory value=(androidx.core.app.CoreComponentFactory) from [androidx.core:core:1.3.1] AndroidManifest.xml:24:18-86 is also present at [com.android.support:support-compat:28.0.0] AndroidManifest.xml:22:18-91 value=(and...
2021-11-09 17:03:14 2405
原创 Android 自定义控件-字母索引
1.创建LetterSildeView 继承View 先定义两个画笔,一个是用来绘画未触摸绘画字母,一个是绘画触摸后绘画字母 private Paint paint;//未触摸 private Paint touchPaint;//触摸 接着定义存放26个字母的char数组 private char[] letters = new char[26];//存放字母数组在构造函数中进行数据初始化,代码如下:public LetterSildeView(Context con...
2021-05-07 11:57:55 424 1
原创 Android 自定义圆弧计数器(模仿QQ计步器)
1.自定义属性 在res的values文件夹中新建一个attrs.xml文件,如下图所示: 在attrs.xml文件中自定义我们需要的view属性,定义内容如下所示:<declare-styleable name="StepView"> <!--外围圆弧的颜色--> <attr name="outerColor" format="color"/> <!--内围圆弧的颜色--> ...
2021-02-19 16:55:31 236
原创 Android 引导页图片设配问题
我们为了良好的展示在手机上,面对于不同尺寸屏幕的手机,它们的高宽比是不一样的,所以我们的基本思想就是以宽度为基准,放大图片。可以通过ImageView中的scaleType中的centerCrop属性来对手机简单的设配布局代码:<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:
2021-01-15 14:32:56 166
原创 在VMware虚拟机上安装Oracle,以及使用instantclient连接和连接中出现的问题
因为Oracle自身安装和卸载繁琐,以及安装后使得电脑变卡,所以决定在VMware虚拟机上安装Oracle。1.下载好Oracle(以Oracle11g为例)和VMware以及win7镜像2.在VMware虚拟机中安装win7系统3.系统安装好后就可以安装我们的Oracle①将下载好的Oracle解压,点击setup.exe进行安装②配置安全更新(这一步,除了把勾去掉,其他...
2019-10-16 20:47:59 1033
原创 Android中点击图片放大的简单方法
简单的思路就是把要放大的图片显示在一个对话框中显示出来Java代码:public void onThumbnailClick(View v) {// final AlertDialog dialog = new AlertDialog.Builder(this).create();// ImageView imgView = getView();// dialog.setVie
2017-07-26 22:50:34 10417 9
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人