Android開發常用知識總結

暖楓無敵發表於2012-07-24

1、在Android應用程式中,選單中通過點選選單呼叫手機中另一個已經安裝的軟體,如視訊監控程式

Intent intent = new Intent();
ComponentName comp = new ComponentName("mobileMonitor.ui", "mobileMonitor.ui.Validate");
intent.setComponent(comp);
intent.setAction("android.intent.action.VIEW");
startActivity(intent);

 

 

2、利用Hierarchy Viewer優化佈局

http://www.cnblogs.com/Rocky_/archive/2011/11/04/2236243.html

相關文章