一键分享到新浪微博

参考地址在这里

总体来说照着参考文档很容易做出来

下面是我的main.xml

<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>

其中(第三步:添加分享代码)那里的

oks.setText("我是分享文本");

就用textview里面的字符替代

oks.setText(textView.getText().toString());

效果:
一键分享到新浪微博_第1张图片

一键分享到新浪微博_第2张图片

你可能感兴趣的:(一键分享到新浪微博)