android的資料儲存與io - 手勢
關於手勢的知識,我是第一次接觸,是android提供的另類的io
可以進行手勢檢測、通過指定手勢完成相應的動作、可以自行新增手勢到手勢庫,也可以識別手勢
建立專案:gesturezoom
執行專案效果如下:
activity檔案:gesturezoom
package wwj.gesturezoom;
import android.graphics.bitmap;
import android.graphics.bitmapfactory;
import android.graphics.matrix;
import android.graphics.drawable.bitmapdrawable;
import android.os.bundle;
import android.view.gesturedetector;
import android.view.gesturedetector.ongesturelistener;
import android.view.motionevent;
import android.widget.imageview;
public class gesturezoom extends activity implements ongesturelistener
@override
public boolean ontouchevent(motionevent event)
public boolean ondown(motionevent e)
public boolean onfling(motionevent e1, motionevent e2, float velocityx,
float velocityy)
//根據原始點陣圖和matrix建立新
bitmap bitmap2 = bitmap.createbitmap(bitmap, 0, 0, width, height, matrix, true);
//顯示新的點陣圖
imageview.setimagebitmap(bitmap2);
return true;
} public void onlongpress(motionevent e)
public boolean onscroll(motionevent e1, motionevent e2, float distancex,
float distancey)
public void onshowpress(motionevent e)
public boolean onsingletapup(motionevent e)
}
Android資料儲存
android中一共提供了4種資料儲存方式 shared preferences 用來儲存 key value paires 格式的資料,它是乙個輕量級的鍵值儲存機制,只可以儲存基本資料型別。files 他通過fileinputstream和fileoutputstream對檔案進行操作。但是在an...
Android資料儲存
1.五種儲存方式 android作業系統提供了一種公共檔案系統,即任何應用軟體都可以使用它來儲存和讀取檔案,該檔案被其他的應用軟體讀取。android採用了一種不同的系統,在android中,所有的應用軟體資料 為應用軟體私有,然而,android也提供了一種標準方式 用軟體將私有資料開放給其他應用...
android 資料儲存
sharedpreferences xml檔案儲存 一 根據context獲取sharedpreferences物件 二 利用edit 方法獲取editor物件。三 通過editor物件儲存key value鍵值對資料。四 通過commit 方法提交資料。sharedpreferences sp c...