從我的應用程序打開應用程序的簡單方法是什麼?我正在建設的應用程序希望人們在有商店時打開Foursquare進行檢查。我知道他們可以打開網頁。但我想打開Foursquare應用程序...從我的應用程序打開Foursquare應用程序
four.setOnClickListener(new View.OnClickListener() {
public void onClick(View view) {
// TODO Auto-generated method stub
Uri uriUrl = Uri.parse("https://m.foursquare.com/nationalcleaners");
Intent launchBrowser = new Intent(Intent.ACTION_VIEW, uriUrl);
startActivity(launchBrowser);
}
});
更新我與我工作的問題... 它會給如果已安裝在其上的用戶選擇使用瀏覽器或Foursquare應用程序的用戶點擊按鈕時的電話......選擇瀏覽器或應用程序後,它會調出foursquare的搜索結果,您可以讓它搜索您想要的foursquare在「放置您尋找的內容」中搜索的內容。部分代碼如下。
這是我如何設置它,它的工作原理。
按鈕四=(Button)findViewById(R.id.foursq);
four.setOnClickListener(new View.OnClickListener() {
public void onClick(View view) {
// TODO Auto-generated method stub
Uri uriUrl = Uri.parse("http://m.foursquare.com/search?q=Place what your searching for hear");
Intent launchBrowser = new Intent(Intent.ACTION_VIEW, uriUrl);
startActivity(launchBrowser);
}
});
也許這線程是你 http://stackoverflow.com/questions/3872063/android-launch-an-application-from-another-application – Xuphey
感謝有用的,你將如何找到「com.package。地址「名稱的Foursquare應用程序? – KodiakBear211
這是Foursquare應用「com.joelapenna.foursquared」的包名稱,謝謝... – KodiakBear211