編輯:關於android開發
首先在當前進程也就是當前的項目裡面進行存儲
SharedPreferences.Editor editor = mContext.getSharedPreferences("tvplay", Context.MODE_PRIVATE).edit();
editor.putString("video", content.getString("video"));
editor.commit();
這是存
SharedPreferences preferences = getTargetContext().getSharedPreferences("tvplay", Context.MODE_PRIVATE);
video = preferences.getString("video", "");
這是取
跨進程SharedPreferences進程存儲
SharedPreferences.Editor editor = mContext.getSharedPreferences("tvplay", Context.MODE_WORLD_READABLE).edit();
editor.putString("video", content.getString("video"));
editor.commit();
這是存跟上面存唯一不同就是模式換了,不懂可以百度!
private static final String TARGET_PACKAGE_NAME = "com.sdmc.hotel.ollauncher";// 目標數據程序的包名,
SharedPreferences preferences = getTargetContext().getSharedPreferences("tvplay", Context.MODE_PRIVATE);
video = preferences.getString("video", "");
private Context getTargetContext(){
try {
return createPackageContext(TARGET_PACKAGE_NAME, Context.CONTEXT_IGNORE_SECURITY);
} catch (NameNotFoundException e) {
e.printStackTrace();
}
return null;
}
這是取,跟上面不同的就是要創建一個你要取的進程的context,然後在調用getSharedPreferences()方法
深入剖析Android四大組件(八)——結束Activity的4個階段 當我們試圖結束Activity的時候,ActivityManagerService的行為將會是怎樣
團隊計劃(4.20),團隊計劃4.20完成情況:了解as界面,以及基礎功能  
activity切換動畫特效,activity切換特效效果圖: 結構圖: 測試代碼: 布局: 1 <?xml version=1.
春秋旅行安卓客戶端源碼項目,旅行安卓客戶端源碼春秋旅行安卓客戶端源碼,這是一款高度模仿春秋旅行app開發的一款應用,通過抓包工具獲取到的接口,希望大家能夠喜歡,並且對大家