我想知道如果我的應用程序是由另一個應用程序檢查程序是由另一個
我試了好幾種方法執行的處理,但我無法找到一個解決辦法
我試過,但返回相同的值,請幫我!代碼:
public class MainActivity extends Activity {
public static boolean isinint;
@Override
protected void onResume() {
super.onResume();
Intent intent = getIntent();
// check if any application has executed your app
if (intent != null && intent.getType() != null) {
isinint = true;
Toast.makeText(getApplicationContext(), "is:" + isinint, Toast.LENGTH_LONG).show();
} else {
isinint = false;
Toast.makeText(getApplicationContext(), "is:" + isinint, Toast.LENGTH_LONG).show();
}
}
}
[區分活動從主屏幕或從應用程序的其他活動啓動](http://stackoverflow.com/questions/5637876/differentiating-between-an-activity-launch-from-home-screen -or-from-another-acti) – vault
不是重複的不解決任何問題 – francescofalletta
你是否嘗試過解決方案?如果是的話顯示的值是什麼 –