- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
无法解析符号“ActivityCompat”我正在尝试通过我的应用程序发送短信。我还在 AndroidManifest.xml 上添加了使用权限
ActivityCompat 无法解析,请帮帮我。
编译Sdk版本为25
try {
SmsManager smsManager = SmsManager.getDefault();
smsManager.sendTextMessage(phoneNo, null, message, null, null);
if (ContextCompat.checkSelfPermission(sendSMS2.this, Manifest.permission.SEND_SMS)
!= PackageManager.PERMISSION_GRANTED) {
// Permission is not granted
// Ask for permision
ActivityCompat.requestPermissions(this,new String[] { Manifest.permission.SEND_SMS}, 1);
}
这是build.gradle
apply plugin: 'com.android.application'
android {
compileSdkVersion 25
buildToolsVersion '25.0.0'
defaultConfig {
applicationId "com.example.somme.testproj2"
minSdkVersion 19
targetSdkVersion 25
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile 'com.android.support:design:25.0.0'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
compile 'com.android.support:appcompat-v7:+'
}
最佳答案
万一有人在转移到 androidx 后在这里,导入
androidx.core.app.ActivityCompat;
而不是
android.support.v4.app.ActivityCompat;
如果对哪个新的 androidx 类替换旧的支持库类感到困惑,请参阅 this androidx 迁移类映射,只需搜索您要替换的类并将其替换为相应的 androidx 类即可。
附注- 我知道这本身并不能回答这个问题。只是把它留在这里给其他可能因为问题标题而来到这里的人。
关于android - 无法解析符号 ActivityCompat,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52661886/
当我的Activity来电ActivityCompat.requestPermissions ,不出现 UI 对话框。 ActivityCompat.requestPermissions(HomeAc
无法解析符号“ActivityCompat”我正在尝试通过我的应用程序发送短信。我还在 AndroidManifest.xml 上添加了使用权限 ActivityCompat 无法解析,请帮帮我。 编
我正在使用 Google API 开发面部识别应用程序。但 android studio 说找不到符号。 这是我的 Activity 。这四个都不起作用。 import android.support
在 AndroidManifest.xml 中: 在 PreActivity.java 中 if (PermissionChecker.checkSelfPermission(preActivit
我正在尝试请求 ACCESS_FINE_LOCATION 权限以获取用户的当前位置。 我的日志记录表明我的应用在查询 ContextCompat.checkSelfPermission() 时目前没有
调用 ActivityCompat.requestPermissions 不显示 UI 对话框。 ActivityCompat.requestPermissions(MainActivity.this
在我的 react-native 应用程序中,我需要获得用户的位置许可,因此我将其添加到其中一个 Activity 类中... public void onCreate() { Activit
if (ContextCompat.checkSelfPermission(RegisterActivity.this, Manifest.permission.READ_PHONE_STA
我是 android 的新手,正在学习如何实现基于位置的服务,我遇到了以下错误 - Cannot resolve symbol 'ActivityCompat' in line 'import and
这是一段代码,用于请求访问设备中精确位置的权限。 if(ContextCompat.checkSelfPermission(this, Manifest.permission.ACCESS_FINE_
我想为下一个 Activity 添加一个进入过渡。 所以我做了: getWindow().requestFeature(Window.FEATURE_ACTIVITY_TRANSITIONS); wi
我正在尝试使用 Android 相机,对于 API 23 或更高版本,它需要在运行时请求许可。根据documentation ,我可以使用 ActivityCompat 或 ContextCompat
这是我添加“simple_permissions”软件包时看到的错误。我怎样才能解决这个问题?我最近升级了flutter,在升级之前,它曾经工作得很好。 /root/flutter/.pub-cach
Android 手机版本:6.0.1 (Android marshmallow) Android 目标 SDK 版本 25 我在 Android 按钮中调用 ActivityCompat.reques
运行时权限对话框在 Android 6.0 或更高版本中显示,因此在 API 级别 23 中添加的 Activity.requestPermissions(...) 是有意义的。 但是为什么还有一个(
我有以下权限: private static final String[] LOCATION_PERMISSIONS = { Manifest.permission.ACCES
if (ContextCompat.checkSelfPermission(thisActivity, Manifest.permission.READ_CONTACTS)
我正在调用 ActivityCompat.requestPermissions 以获得 android M 下的权限,但是,这需要参数中的 Activity 。这很好,除了我想从单例调用它,并且单例可
我正尝试在我的智能 watch 上使用 ViewPager,但在尝试重建/运行/调试我的应用程序时,我一直收到错误消息。我正在使用 FragmentActivity,这是发生错误的地方。我搜索了 st
我在 ionic 中开始了一个新项目。只安装 qrscenner 插件。运行命令后ionic cap build android运行成功。然后我在 Android Studio 中运行应用程序,得到错
我是一名优秀的程序员,十分优秀!