android sharedpreferences简单使用,Android中SharedPreferences简单使用实例

本文实例为大家分享了sharedpreferences简单使用案例,供大家参考,具体内容如下

mainactivity:

public class sharedpreferencestestactivity extends activity implements view.onclicklistener{

private edittext edittext;

private textview textview;

private button write;

private button read;

@override

protected void oncreate(bundle savedinstancestate) {

super.oncreate(savedinstancestate);

setcontentview(r.layout.activity_shared_preferences_test);

initview();

write.setonclicklistener(this);

read.setonclicklistener(this);

}

private void initview() {

edittext=(edittext)findviewbyid(r.id.edit_test);

textview=(textview)findviewbyid(r.id.text_test);

write=(button)findviewbyid(r.id.write);

read=(button)findviewbyid(r.id.read);

}

@override

public void onclick(view v) {

switch (v.getid()){

case r.id.write:

string some=edittext.gettext().tostring();

sharedpreferences pref = sharedpreferencestestactivity.this.getsharedpreferences("data",mode_private);

sharedpreferences.editor editor = pref.edit();

editor.putstring("content",some);

editor.commit();

toast.maketext(sharedpreferencestestactivity.this, "写入成功" , toast.length_long).show();

edittext.settext("");

break;

case r.id.read:

sharedpreferences pre = getsharedpreferences("data",mode_private);

string name = pre.getstring("content","");

textview.settext(name);

toast.maketext(sharedpreferencestestactivity.this, "读取成功" , toast.length_long).show();

break;

}

}

}

mainactivity.xml

xmlns:app="http://schemas.android.com/apk/res-auto"

xmlns:tools="http://schemas.android.com/tools"

android:layout_width="match_parent"

android:layout_height="match_parent"

android:orientation="vertical"

tools:context="com.fae.mobile.testactivity.sharedpreferencestestactivity">

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:orientation="horizontal">

android:textcolor="@color/red"

android:background="@null"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:id="@+id/edit_test"

android:layout_weight="1"

/>

android:textcolor="@color/blue"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:id="@+id/text_test"

android:layout_weight="1"/>

android:layout_margintop="25dp"

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:id="@+id/read"

android:text="读"/>

android:layout_margintop="25dp"

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:id="@+id/write"

android:text="写"/>

b2c5be80f9b232c384186cc9b9b7f3a2.png

10ad60fb0d2f31b349d9a081f1ff233b.png

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持萬仟网。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值