Back to project page AndroidFinally.
The source code is released under:
GNU General Public License
If you think the Android project AndroidFinally listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.example.androidfinallyapp; /*from www . j a v a2 s.c om*/ import android.support.v7.app.ActionBarActivity; import android.content.Intent; import android.os.Bundle; import android.util.Log; import android.view.Menu; import android.view.MenuItem; public class StartActivity extends ActionBarActivity { private static final String INTENT_START_ACTIVITY = "com.example.androidfinallyapp.StartAcitvity"; private static final String INTENT_START_ACTIVITY_TWO = "com.example.androidfinallyapp.StartAcitvityTwo"; private static final String TAG = "StartActivity"; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_start); Intent intent = getIntent(); // ????????????????Intent?????????category????????????CATEGORY_DEFAULT?? // ??????Intent Filter????????????Intent.GATEFORY_DEFAULT????????????Intent // ???? String action = intent.getAction(); if (INTENT_START_ACTIVITY.equals(action)) { String dataString = intent.getData().toString(); String dataTypeString = intent.getType(); Log.i(TAG, "getAction is : " + action + "Date is :" + dataString + " Type is :" + dataTypeString); Bundle extraBundle = intent.getExtras(); Boolean smsBoolean = extraBundle.getBoolean("sengto"); String smsString = (String) extraBundle.get("sms_body"); Log.i(TAG, "Extra String is :" + smsString + " smsBoolean is :" + smsBoolean); } else if (INTENT_START_ACTIVITY_TWO.equals(action)) { Log.i(TAG, "getAction is :" + action); } else { Log.i(TAG, "start form setComponent smsBoolean is :" + intent.getExtras().getBoolean("sengto")); } int pid = android.os.Process.myPid(); Log.i(TAG,"StartActivity pid is :"+pid); } @Override public boolean onCreateOptionsMenu(Menu menu) { // Inflate the menu; this adds items to the action bar if it is present. getMenuInflater().inflate(R.menu.start, menu); return true; } @Override public boolean onOptionsItemSelected(MenuItem item) { // Handle action bar item clicks here. The action bar will // automatically handle clicks on the Home/Up button, so long // as you specify a parent activity in AndroidManifest.xml. int id = item.getItemId(); if (id == R.id.action_settings) { return true; } return super.onOptionsItemSelected(item); } }