IntentBuilder(Context,ComponentName) 在 IntentBuilder 中具有私有访问权限
IntentBuilder(Context,ComponentName) has private access in IntentBuilder
以下是我在尝试运行应用程序
时遇到的错误
error: constructor IntentBuilder in class IntentBuilder cannot be applied to given types;
new ShareCompat.IntentBuilder(context)
^
required: Context,ComponentName
found: Context
reason: actual and formal argument lists differ in length
在匿名新 View.OnClickListener() 中,new ShareCompat.IntentBuilder(...)
第一行的 onClick() 方法。
当我在带有红色卷曲下划线的那条线上冲浪时,Android Studio 显示以下消息:
'IntentBuilder(android.content.Context, android.content.ComponentName)' has private access in 'androidx.core.app.ShareCompat.IntentBuilder'
我正在开发 Android 版本 API 30: Andorid 11.0 (R)
。
package com.example.implicitintents;
import android.content.ComponentName;
import android.content.Context;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import androidx.appcompat.app.AppCompatActivity;
import androidx.appcompat.app.AppCompatDelegate;
import androidx.core.app.ShareCompat;
public class MainActivity extends AppCompatActivity {
private static final String TAG = MainActivity.class.getSimpleName();
private Context context = this;
private Button openShareBtn;
private EditText shareEditText;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_NO);
openShareBtn = findViewById(R.id.open_share_button);
shareEditText = findViewById(R.id.share_edittext);
openShareBtn.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
String txt = shareEditText.getText().toString();
String mimeType = "text/plain";
new ShareCompat.IntentBuilder(context)
.setType(mimeType)
.setChooserTitle("Share this text with: ")
.setText(txt)
.startChooser();
}
});
}
}
以下是AndroidManifest.xml
内容:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.implicitintents">
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/Theme.ImplicitIntents">
<activity
android:name=".MainActivity"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
<queries>
<intent>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="*" />
</intent>
</queries>
</manifest>
以下是build.gradle (Module: Implicit_Intents:app)
内容:
plugins {
id 'com.android.application'
}
android {
compileSdk 31
defaultConfig {
applicationId "com.example.implicitintents"
minSdk 30
targetSdk 31
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}
dependencies {
implementation 'androidx.appcompat:appcompat:1.2.0'
implementation 'com.google.android.material:material:1.3.0'
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
testImplementation 'junit:junit:4.+'
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
}
你能帮我解决这个问题吗?我被这个错误困住了?
谢谢。如果需要更多信息,请告诉我。
使用public构造函数:
new ShareCompat.IntentBuilder(context)
.setType(mimeType)
.setChooserTitle("Share this text with:")
.setText(txt)
.startChooser();
您也可以直接从视图中获取上下文,而不是将其存储为字段:
new ShareCompat.IntentBuilder(v.getContext())
.setType(mimeType)
.setChooserTitle("Share this text with:")
.setText(txt)
.startChooser();
专业提示:Android 开源。如果你 运行 遇到这种问题,你可以跳到 class 定义看看有什么问题。
在这种情况下,通过查看 ShareCompat
源代码,您会发现虽然构造函数是私有的,但有一个 from 静态构建器方法。
奇怪的是,这在文档中被标记为已弃用,所以它看起来像是一个文档错误:
尽管文档说要使用构造函数,但构造函数不起作用:
from
静态构造函数可用。
以下是我在尝试运行应用程序
时遇到的错误error: constructor IntentBuilder in class IntentBuilder cannot be applied to given types;
new ShareCompat.IntentBuilder(context)
^
required: Context,ComponentName
found: Context
reason: actual and formal argument lists differ in length
在匿名新 View.OnClickListener() 中,new ShareCompat.IntentBuilder(...)
第一行的 onClick() 方法。
当我在带有红色卷曲下划线的那条线上冲浪时,Android Studio 显示以下消息:
'IntentBuilder(android.content.Context, android.content.ComponentName)' has private access in 'androidx.core.app.ShareCompat.IntentBuilder'
我正在开发 Android 版本 API 30: Andorid 11.0 (R)
。
package com.example.implicitintents;
import android.content.ComponentName;
import android.content.Context;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import androidx.appcompat.app.AppCompatActivity;
import androidx.appcompat.app.AppCompatDelegate;
import androidx.core.app.ShareCompat;
public class MainActivity extends AppCompatActivity {
private static final String TAG = MainActivity.class.getSimpleName();
private Context context = this;
private Button openShareBtn;
private EditText shareEditText;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_NO);
openShareBtn = findViewById(R.id.open_share_button);
shareEditText = findViewById(R.id.share_edittext);
openShareBtn.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
String txt = shareEditText.getText().toString();
String mimeType = "text/plain";
new ShareCompat.IntentBuilder(context)
.setType(mimeType)
.setChooserTitle("Share this text with: ")
.setText(txt)
.startChooser();
}
});
}
}
以下是AndroidManifest.xml
内容:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.implicitintents">
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/Theme.ImplicitIntents">
<activity
android:name=".MainActivity"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
<queries>
<intent>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="*" />
</intent>
</queries>
</manifest>
以下是build.gradle (Module: Implicit_Intents:app)
内容:
plugins {
id 'com.android.application'
}
android {
compileSdk 31
defaultConfig {
applicationId "com.example.implicitintents"
minSdk 30
targetSdk 31
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}
dependencies {
implementation 'androidx.appcompat:appcompat:1.2.0'
implementation 'com.google.android.material:material:1.3.0'
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
testImplementation 'junit:junit:4.+'
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
}
你能帮我解决这个问题吗?我被这个错误困住了?
谢谢。如果需要更多信息,请告诉我。
使用public构造函数:
new ShareCompat.IntentBuilder(context)
.setType(mimeType)
.setChooserTitle("Share this text with:")
.setText(txt)
.startChooser();
您也可以直接从视图中获取上下文,而不是将其存储为字段:
new ShareCompat.IntentBuilder(v.getContext())
.setType(mimeType)
.setChooserTitle("Share this text with:")
.setText(txt)
.startChooser();
专业提示:Android 开源。如果你 运行 遇到这种问题,你可以跳到 class 定义看看有什么问题。
在这种情况下,通过查看 ShareCompat
源代码,您会发现虽然构造函数是私有的,但有一个 from 静态构建器方法。
奇怪的是,这在文档中被标记为已弃用,所以它看起来像是一个文档错误:
尽管文档说要使用构造函数,但构造函数不起作用:
from
静态构造函数可用。