2013-06-01 53 views
1

我已經創建了一個小的Rss Feed應用程序。在這個應用程序中,我在listview中獲取Rss,如果我們單擊任何listview項目,它將打開包含Rss詳細描述的RssDetails.java活動。在這個活動中,我已經實施了這個活動的共享意圖。如何自定義android share-intent

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說明應該來,而不是「世界,你好」。這應該來自R.id.detailsdescription。

回答

0

嘗試addind這樣的..

@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(Intent.EXTRA_TEXT, detailsDescription.getText().toString()); 
    intent.putExtra(android.content.Intent.EXTRA_SUBJECT, "Share via....play.google.com"); 
    startActivity(Intent.createChooser(intent, "Share")); 
     } 
     } 

希望這有助於..