随机推荐
Android 13framework中添加AIDL
前言添加一个Service并让应用调用,类似于获取AudioManager一样。AudioManager audioManager = (AudioManager) getSystemService(Context.AUDIO_SERVICE);通过getSystemService()获取X...
Unable to make field
前言升级新版本Android Studio后倒入部分工程出现如下问题:Unable to make field private final java.lang.String java.io.File.path accessible: module java.base does not "ope...
Android NDK之FirstJNI
工欲善其事必先利其器本文设计软件信息如下:一、工具简介操作系统 :Windows 7Eclipse 版本:Luna Service Release 2 (4.4.2)NDK 版本:android-ndk-r12b-windows-x86_64 (Native Developme...
MediaMetadataRetriever解析媒体文件元数据
前言记录一下,一般获取视频、音频等媒体文件的元数据信息是使用MediaMetadataRetriever这个类。正文直接上代码。MediaMetadataRetriever mediaMetadataRetriever = new MediaMetadataRetriever();//设...
编译Apk出现:Duplicate class android.support.v4.app.INotificationSideChannel found
前言编译老项目Apk时,到我这就一个app的源码,导入工程后出现如下提示:Duplicate class android.support.v4.app.INotificationSideChannel found in modules core-1.1.0-runtime (androidx....
ToolBar的简单使用
前言上一篇《ActionBar中Menu使用》介绍的是主题样式中默认显示ActionBar,这种有局限性不好自定义。因此我们主题样式中隐藏NoActionBar,使用ToolBar来定制更多的选项。正文# 带ActionBarTheme.MaterialComponents.Light...