1
如何將我現在正在執行的應用程序的鏈接發送到特定的URL?如何發送鏈接到Vimeo?
blah.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View arg0) {
Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("https://player.vimeo.com/video/83178705?"));
startActivity(browserIntent);
}
});
我寫不出比簡單的說:) – Roa
http://stackoverflow.com/questions/3004515/android-sending-an-intent-to-browser-to-open-specific-url –
我不知道這是不是vimeo – Roa