我创建了一个小的 Rss Feed 应用程序。在这个应用程序中,我在列表视图中获取 Rss,如果我们单击任何列表视图项目,它将打开包含 Rss 详细描述的 RssDetails.java 活动。在这个活动中,我在这个活动中实现了共享意图。
RssDetails.java
super.onCreate(savedInstanceState);
setContentView(R.layout.details);
TextView detailsTitle = (TextView)findViewById(R.id.detailstitle);
TextView detailsDescription = (TextView)findViewById(R.id.detailsdescription);
TextView detailsPubdate = (TextView)findViewById(R.id.detailspubdate);
TextView detailsLink = (TextView)findViewById(R.id.detailslink);
findViewById(R.id.sharebutton).setOnClickListener(this);
Bundle bundle = this.getIntent().getExtras();
detailsTitle.setText(bundle.getString("keyTitle"));
detailsDescription.setText(bundle.getString("keyDescription"));
detailsPubdate.setText(bundle.getString("keyPubdate"));
detailsLink.setText(bundle.getString("keyLink"));}
@Override
public void onClick(View v) {
if (v.getId()==R.id.button1) {
Intent intent = new Intent(Intent.ACTION_SEND);
intent.setType("text/plain");
intent.putExtra(Intent.EXTRA_TEXT, "Hello World");
intent.putExtra(android.content.Intent.EXTRA_SUBJECT, "Share via....play.google.com");
startActivity(Intent.createChooser(intent, "Share"));
}
}
现在我希望当我单击共享按钮时,Rss 描述应该出现而不是“Hello world”。这应该来自 R.id.detailsdescription。