gpt4 book ai didi

java - 无法从 Assets 文件夹中读取图像文件并在 Android 中使用 Intent 共享它?

转载 作者:行者123 更新时间:2023-11-29 05:30:09 24 4
gpt4 key购买 nike

按照本教程从 Assets 文件夹中读取图像。这是链接 Link to read image from Assets folderContentclass 从 ContentProvider 扩展,但我在第一行遇到错误。这个错误在 Contentclass1 行的第一行。请让我知道我需要在 Contentclass1.java 中实现什么

Multiple markers at this line
- The type Contentclass1 must implement the inherited abstract method ContentProvider.onCreate()
- The type Contentclass1 must implement the inherited abstract method ContentProvider.delete(Uri, String, String[])
- The type Contentclass1 must implement the inherited abstract method ContentProvider.query(Uri, String[], String, String[],
String)
- The type Contentclass1 must implement the inherited abstract method ContentProvider.getType(Uri)
- The type Contentclass1 must implement the inherited abstract method ContentProvider.update(Uri, ContentValues, String,
String[])
- The type Contentclass1 must implement the inherited abstract method ContentProvider.insert(Uri, ContentValues)

Contentclass1.java

package com.example.shareima;
import java.io.FileNotFoundException;
import java.io.IOException;
import android.content.ContentProvider;
import android.content.res.AssetFileDescriptor;
import android.content.res.AssetManager;
import android.net.Uri;

public class Contentclass1 extends ContentProvider
{
@Override
public AssetFileDescriptor openAssetFile(Uri uri,String mode) throws FileNotFoundException {
AssetManager am = getContext().getAssets();
String file_name = uri.getLastPathSegment();
if(file_name == null)
throw new FileNotFoundException();
AssetFileDescriptor afd = null;
try {
afd = am.openFd(file_name);
} catch (IOException e) {
e.printStackTrace();
}
return afd;//super.openAssetFile(uri, mode);
}
}

list .xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.shareima"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="12"
android:targetSdkVersion="17" />
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.example.shareima.MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<provider android:name=".Contentclass1"
android:authorities="com.example.shareima"/>
</application>
</manifest>

最佳答案

ContentProvider 是一个抽象类。这意味着它具有某些方法的定义,但不提供它们的实现。因此,当您扩展 ContentProvider 时,您需要在您的类中提供这些方法的实现(即使您无意在您的代码中调用它们)。这就是本教程所说的“为所需的抽象方法实现 stub ”时的意思,也是您的编译错误所指的意思。

您可以通过将以下内容添加到您的类中来实现它们:

@Override
public int delete(Uri arg0, String arg1, String[] arg2) {
return 0;
}

@Override
public String getType(Uri arg0) {
return null;
}

@Override
public Uri insert(Uri arg0, ContentValues arg1) {
return null;
}

@Override
public boolean onCreate() {
return false;
}

@Override
public Cursor query(Uri arg0, String[] arg1, String arg2, String[] arg3, String arg4) {
return null;
}

@Override
public int update(Uri arg0, ContentValues arg1, String arg2, String[] arg3) {
return 0;
}

这些被称为“ stub ”,因为它们本身不进行任何处理(除了返回 null/zero/false 值)。

关于java - 无法从 Assets 文件夹中读取图像文件并在 Android 中使用 Intent 共享它?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21378738/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com