【Android开发学习07】存储简单数据的利器--Preferences

一.基础知识:

Preferences是一种轻量级的数据库存储机制,主要用于记录游戏中的得分,应用程序上次登录的时间等。



二.编程实现:

1. 界面编辑(res\layout\main.xml):

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    >
<TextView  
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:textSize="25dip"
    android:id="@+id/TextView01"
    />										<!-- 添加TextView -->
</LinearLayout>

2. 代码编辑( \src\wyf\zcl\MyActivity.java):

package wyf.zcl;
import java.util.Date;								//引入相关包
import android.app.Activity;						//引入相关包
import android.content.Context;						//引入相关包
import android.content.SharedPreferences;			//引入相关包
import android.os.Bundle;							//引入相关包
import android.widget.TextView;						//引入相关包
import android.widget.Toast;						//引入相关包
public class MyActivity extends Activity {
    /** Called when the activity is first created. */
	private TextView tv;
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        SharedPreferences sp=this.getSharedPreferences("sharePre", Context.MODE_PRIVATE);
        //返回一个SharedPreferences实例,第一个参数是Preferences名字,第二个参数是使用默认的操作
        String lastLogin=sp.getString(				//从SharedPreferences中读取上次访问的时间
        		"ll",								//键值
        		null								//默认值
        );
        if(lastLogin==null){
        	lastLogin="欢迎您,您是第一次访问本Preferences";
        }else{
        	lastLogin="欢迎回来,您上次于"+lastLogin+"登录";
        }
        //向SharedPreferences中写回本次访问时间
        SharedPreferences.Editor editor=sp.edit();
        editor.putString("ll", new Date().toLocaleString());	//向editor中放入现在的时间
        editor.commit();										//提交editor
        tv=(TextView)this.findViewById(R.id.TextView01);
        tv.setText(lastLogin);
    }
}

3.运行效果:








  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值