軟體引數設定
sharedpreferencesactivity
package org.wp.sharedpreferences;
/** *
* android平台給我們提供了乙個sharedpreferences類
* 它是乙個輕量級的儲存類,特別適合用於儲存軟體配置引數。
* 使用sharedpreferences儲存資料,其背後是用xml檔案存放資料。
* 檔案存放在/data/data//shared_prefs目錄下。
* ** 如果訪問其他應用中的preference,前提條件是:
* 該preference建立時指定了context.mode_world_readable或者context.mode_world_writeable許可權
* 首先需要建立其他應用的context,然後通過context訪問preference
* 訪問preference時會在其他應用所在包下的shared_prefs目錄找到preference
* * 如果不通過建立context訪問其他應用的preference
* 可以以讀取xml檔案方式直接訪問其他應用preference對應的xml檔案
* 如: file xmlfile = new file("/data/data//shared_prefs/wp.xml");
* 應替換成應用的包名
* */
// try catch (exception e)
import android.content.context;
import android.content.sharedpreferences;
import android.content.sharedpreferences.editor;
import android.os.bundle;
import android.view.view;
import android.widget.button;
import android.widget.edittext;
import android.widget.textview;
import android.widget.toast;
public class sharedpreferencesactivity extends activity
private view.onclicklistener listener = new view.onclicklistener()
case r.id.showbutton:
}} };
}
main.xml
<?xml version="1.0" encoding="utf-8"?>strings.xml
<?xml version="1.0" encoding="utf-8"?>androidmanifest.xmlhello world, sharedpreferencesactivity!
姓名年齡
儲存引數
顯示引數
<?xml version="1.0" encoding="utf-8"?>
Android學習筆記高階十之Matrix錯切變換
剛開始我也不懂啥叫錯切變換,一看效果圖你就恍然大悟。對影象的錯切變換做個總結 x x0 b y0 y d x0 y0 與之對應的方法是 matrix matrix new matrix matrix.setskew 0.0f,0.5f 再分享一下我老師大神的人工智慧教程吧。零基礎!通俗易懂!風趣幽默...
android學習記錄 十
改變傳入的資料庫版本號就可以觸發資料庫公升級.val dbhelper mydatabasehelper this bookstore.db 5 此時會呼叫onupgrade方法.重寫onupgrade方法 override funonupgrade db sqlitedatabase,oldver...
Android學習筆記
android系列 第一期 第一課 android初步認識 今天我們來初步了解一下安卓吧。首先,說到android,大家都非常熟悉了,相信都用過android手機吧,android給我們的第一印象應該是它的logo 乙個小機械人,如下圖1所示。圖1 android logo 嗯,好,認識了andro...