Ich möchte meiner Android-App die Schaltfläche "Teilen" hinzufügen.
So wie das
Ich habe die Schaltfläche "Teilen" hinzugefügt, aber die Schaltfläche ist nicht aktiv. Ich klicke, aber nichts passiert.
Mein Code in MainActivity.java:
private ShareActionProvider mShareActionProvider;
@Override
public boolean onCreateOptionsMenu(Menu menu) {
getMenuInflater().inflate(R.menu.share_menu, menu);
getMenuInflater().inflate(R.menu.main, menu);
MenuItem item = menu.findItem(R.id.share_menu);
mShareActionProvider = (ShareActionProvider) menu.findItem(R.id.share_menu).getActionProvider();
mShareActionProvider.setShareIntent(getDefaultShareIntent());
return true;
}
{
Intent sharingIntent = new Intent(Intent.ACTION_SEND);
sharingIntent.setType("text/plain");
sharingIntent.putExtra(android.content.Intent.EXTRA_TEXT, "Text");
sharingIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, "Subject");
startActivity(Intent.createChooser(sharingIntent, "Share using"));
}
Ich möchte Text in meiner ersten Registerkarte (first_tab.xml) oder zweiten Registerkarte (second_tab.xml) freigeben.
Code in tab (xml) (falls erforderlich):
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/background_color"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".MainActivity$DummySectionFragment" >
<TextView
android:id="@+id/section_label1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:text="@string/text"
android:textColor="@color/text_color" />
<ImageView
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:src="@drawable/sprite" />
Antworten:
Fügen Sie einen hinzu
Button
und klicken Sie auf,Button
um diesen Code hinzuzufügen:Nützliche Links:
Für das grundlegende Teilen
Zur Anpassung
quelle
share
Symbol in meiner Aktionsleiste erstelltErstellen Sie eine Schaltfläche mit einer ID-Freigabe und fügen Sie das folgende Code-Snippet hinzu.
Das obige Codefragment öffnet die Freigabeauswahl beim Klicken auf die Freigabeschaltfläche. Beachten Sie jedoch, dass das Freigabecode-Snippet mit dem Emulator möglicherweise keine sehr guten Ergebnisse liefert. Führen Sie für tatsächliche Ergebnisse das Code-Snippet auf dem Android-Gerät aus, um die tatsächlichen Ergebnisse zu erhalten.
quelle
in Kotlin:
quelle