編輯:關於android開發
SDK裡是這樣描述:A mapping from String values to various Parcelable types。
它幫助我將數據打包傳入intent裡面,為使用這些數據提供了便利。
protected void onListItemClick (ListView l, View v, int position, long id)
{
super.onListItemClick(l, v, position, id);
//獲得選中項的HashMap對象
HashMap<String,String> map=(HashMap<String,String>)lv.getItemAtPosition(position);
String Type=map.get("Type");
Intent i=new Intent(this,title.class);
Bundle mBundle=new Bundle();
mBundle.putString("type", Type);
i.putExtras(mBundle);
startActivity(i);
}
代碼中
1、實例化Bundle 一個對象,用putString(標記,數據)來將數據導入到Bundle對象中;
2、然後將Bundle對象導入到Intent對象中;
3、Intent啟動另一個activity。
從intent中讀出需要的數據:
bundle = getIntent().getExtras();
if(bundle!=null)
Type=bundle.getString("type");
if(Type!=null)
//從數據庫依據所選類型讀出 文章的Title,保存在cur中
cur=myDBadapter.getTitle(new String[]{Type});
4、Bundle對象可以從activity.getIntent().getExtras()中返回。 可見,啟動當前activity 的Intent對象是由getIntent()來找到的。
5、通過Bundle的getString()方法,就可以讀出所要的數據。
這就是Bundle的經典用法,包裹數據放入Intent中,目的在於傳輸數據。android加固—1.如何檢驗so文件是否加殼成功,androidso程序對so文件加殼後,如何驗證是否加殼成功呢,首先除了能在應用中正常運行外,還要用IDA來檢測:
如何寫一個簡易的文件系統(4):umount哈哈,時隔幾年,又從磁盤深處找出了原始代碼myfs.zip。---------------------------------
安卓UI適配限定符 引言 對於程序在不同尺寸的Android機器上運行,對UI的適用性造成了額外的開銷,不過限定符的出現,很方便的解決了這個問題。通過創建
《Android源碼設計模式解析與實戰》讀書筆記(十八) 第十八章、代理模式 代理模式也稱委托模式,是結構型設計模式之一。是應用廣泛的模式之一。 1.定義 為其他對