参考地址在这里
总体来说照着参考文档很容易做出来
下面是我的main.xml
代码语言:javascript复制<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@ id/LinearLayout1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context="com.example.oneclickshare.MainActivity" >
<TextView
android:id="@ id/txt_share"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:textSize="25sp"
android:text="@string/txt_share" />
<Button
android:id="@ id/btn_share"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/share" />
</LinearLayout>
其中(第三步:添加分享代码)那里的
代码语言:javascript复制oks.setText("我是分享文本");
就用textview里面的字符替代
代码语言:javascript复制oks.setText(textView.getText().toString());
效果: