Android面試題(二)

來源:互聯網
上載者:User

二 讓Activity變成一個視窗:Activity屬性設定 
   
   講點輕鬆的吧,可能有人希望做出來的應用程式是一個漂浮在手機主介面的東西,那麼很 
簡單你只需要設定 一下Activity的主題就可以了在AndroidManifest.xml 中定義 Activity的 
地方一句話: 

Xml代碼 

android :theme="@android:style/Theme.Dialog" 

android:theme="@android:style/Theme.Dialog" 

這就使你的應用程式變成對話方塊的形式彈出來了,或者 

Xml代碼 

android:theme="@android:style/Theme.Translucent" 

android:theme="@android:style/Theme.Translucent" 

就變成半透明的,[友情提示-.-]類似的這種activity的屬性可以在android.R.styleable 類的AndroidManifestActivity 方法中看到,AndroidManifest.xml中所有元素的屬性的介紹都可以參考這個類android.R.styleable 

上面說的是屬性名稱,具體有什麼值是在android.R.style中 可以看到,比如這個"@android:style/Theme.Dialog" 就對應於android.R.style.Theme_Dialog ,('_'換成'.' <--注意:這個是文章內容不是笑臉)就可以用在描述檔案 中了,找找類定義和描述檔案中的對應關係就都明白了。 

三 你背景Activity被系統回收怎麼辦:onSaveInstanceState 
  
   當你的程式中某一個Activity A 在運行時中,主動或被動地運行另一個新的Activity B 
這個時候A會執行 

Java代碼 

public 
void onSaveInstanceState(Bundle outState) {  
    super.onSaveInstanceState(outState);  
    outState.putLong("id", 1234567890);  
}  

public void onSaveInstanceState(Bundle outState) {    super.onSaveInstanceState(outState);    outState.putLong("id", 1234567890);} 

B 完成以後又會來找A, 這個時候就有兩種情況,一種是A被回收,一種是沒有被回收,被回 
收的A就要重新調用onCreate()方法,不同於直接啟動的是這回onCreate()裡是帶上參數 
savedInstanceState,沒被收回的就還是onResume就好了。 

savedInstanceState是一個Bundle對象,你基本上可以把他理解為系統幫你維護的一個Map對象。在onCreate()裡你可能會用到它,如果正常啟動onCreate就不會有它,所以用的時候要判斷一下是否為空白。 

Java代碼 

if(savedInstanceState != null){  
     long id = savedInstanceState.getLong("id");  
}  

if(savedInstanceState != null){     long id = savedInstanceState.getLong("id");} 

就像官方的Notepad教程 裡的情況,你正在編輯某一個note,突然被中斷,那麼就把這個note的id記住,再起來的時候就可以根據這個id去把那個note取出來,程式就完整一些。這也是看你的應用需不需要儲存什麼,比如你的介面就是讀取一個列表,那就不需要特殊記住什麼,哦, 沒準你需要記住捲軸的位置... 

四 調用與被調用:我們的通訊使者Intent 

要說Intent了,Intent就是這個這個意圖 ,應用程式間Intent進行交流,打個電話啦,來個 
電話啦都會發Intent, 這個是Android架構的松耦合的精髓部分,大大提高了組件的複用性,比如你要在你的應用程式中點擊按鈕,給某人打電話,很簡單啊,看下代碼先: 

Java代碼 

Intent intent = new Intent();  
intent.setAction(Intent.ACTION_CALL);  
intent.setData(Uri.parse("tel:" + number));  
startActivity(intent);  

Intent intent = new Intent(); intent.setAction(Intent.ACTION_CALL); intent.setData(Uri.parse("tel:" + number)); startActivity(intent); 

扔出這樣一個意圖,系統看到了你的意圖就喚醒了電話撥號程式,打出來電話。什麼讀連絡人,發簡訊啊,郵件啊,統統只需要扔出intent就好了,這個部分設計 地確實很好啊。 

那Intent通過什麼來告訴系統需要誰來接受他呢? 
通常使用Intent有兩種方法,第一種是直接說明需要哪一個類來接收代碼如下: 

Java代碼 

Intent intent = new Intent(this, MyActivity.class);  
intent.getExtras().putString("id", "1");  
startActivity(intent);  

Intent intent = new Intent(this, MyActivity.class);intent.getExtras().putString("id", "1");tartActivity(intent); 

第一種方式很明顯,直接指定了MyActivity為接受者,並且傳了一些資料給MyActivity,在MyActivity裡可以用getIntent()來的到這個intent和資料。 

第二種就需要先看一下AndroidMenifest中的intentfilter的配置了 

Xml代碼 

<intent-filter> 
    <action 
android:name="android.intent.action.VIEW" 
/> 
    <action 
android:value="android.intent.action.EDIT" 
/> 
    <action 
android:value="android.intent.action.PICK" 
/> 
    <category 
android:name="android.intent.category.DEFAULT" 
/> 
    <data 
android:mimeType="vnd.android.cursor.dir/vnd.google.note" 
/> 
</intent-filter> 

<intent-filter>    <action android:name="android.intent.action.VIEW" />    <action android:value="android.intent.action.EDIT" />    <action android:value="android.intent.action.PICK" />    <category android:name="android.intent.category.DEFAULT" />    <data android:mimeType="vnd.android.cursor.dir/vnd.google.note" /></intent-filter> 這裡面配置用到了action, data, category這些東西,那麼聰明的你一定想到intent裡也會有這些東西,然後一匹配不就找到接收者了嗎? 

action其實就是一個意圖的字串名稱。 
上面這段intent-filter的設定檔說明了這個Activity可以接受不同的 Action,當然相應的程式邏輯也不一樣咯,提一下那個 mimeType,他是在ContentProvider裡定義的,你要是自己實現一個ContentProvider就知道了,必須指定 mimeType才能讓資料被別人使用。 

不知道原理說明白沒,總結一句,就是你調用別的介面不是直接new那個介面,而是通過扔出一個intent,讓系統幫你去調用那個介面,這樣就多麼松藕合啊,而且符合了生命週期被系統管理的原則。 

想知道category都有啥,Android為你預先定製好的action都有啥等等,請親自訪問官方連結Intent 

ps:想知道怎麼調用系統應用程式的同學,可以仔細看一下你的logcat,每次運行一個程式的時候是不是有一些資訊比如: 
Starting activity: Intent { action=android.intent.action.MAINcategories={android.intent.category.LAUNCHER} flags=0x10200000comp={com.android.camera/com.android.camera.GalleryPicker} } 
再對照一下Intent的一些set方法,就知道怎麼調用咯,希望你喜歡:) 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.