在Android中,實現分享功能通常需要使用Intent。以下是一個簡單的示例,展示了如何使用Context實現分享功能:
<uses-permission android:name="android.permission.INTERNET" />
import android.content.Context;
import android.content.Intent;
import androidx.core.app.ShareCompat;
public class ShareHelper {
public static void shareText(Context context, String text) {
Intent shareIntent = ShareCompat.IntentBuilder.from(context)
.setType("text/plain")
.setText(text)
.getIntent();
if (shareIntent.resolveActivity(context.getPackageManager()) != null) {
context.startActivity(shareIntent);
}
}
}
String textToShare = "這是我要分享的內容";
ShareHelper.shareText(this, textToShare);
這樣,當用戶點擊分享按鈕時,應用將使用默認的應用(如電子郵件、短信等)打開分享界面。你可以根據需要自定義分享內容、標題等信息。
注意:在使用ShareCompat庫之前,請確保在你的項目的build.gradle文件中添加以下依賴:
implementation 'androidx.core:core-ktx:1.7.0'