我想在我的应用程序中共享一个图像。
这是我的布局文件
activity_xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_main"
android:layout_width="match_parent"
android:layout_height="match_parent"
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="com.example.dc.google.MainActivity">
<Button
android:id="@+id/share_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Share on Google+"
/>
</RelativeLayout>
这是我的java类文件
MainActivity.java
package com.example.dc.google;
import android.content.Intent;
import android.net.Uri;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.view.View;
import android.widget.Button;
public class MainActivity extends AppCompatActivity {
Button button;
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
final Button shareButton = (Button) findViewById(R.id.share_button);
shareButton.setOnClickListener(new android.view.View.OnClickListener() {
@Override
public void onClick(View v) {
// Launch the Google+ share dialog with attribution to your app.
Intent shareIntent = shareButton.setText("Welcome to Google+")
.setContentUrl(Uri.parse("https://developers.google.com/+/"))
.getIntent();
startActivityForResult(shareIntent,0);
}
});
}
}
此处.setContentUrl
显示错误the method can not be resolved.
我找不到解决办法
我该如何解决这个错误?
答案 0 :(得分:0)
需要read the documentation再次......
你不应该{1}}在你的按钮上setText
<{1}} setText
一旦获得可编译的代码,就会担心共享图像。 (提示:该文档还显示sharing images)。
new PlusShare.Builder