【一】案例演示
1、创建应用
2、准备图片素材
3、主界面类更名第一界面类
4、创建第二界面类
5、字符串资源文件
<resources>
<string name="app_name">多窗口共享数据</string>
<string name="write_data">写入数据</string>
<string name="read_data">读取数据</string>
<string name="jump_to_second">跳转第二个窗口</string>
</resources>
6、第一界面主布局资源文件
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/background"
android:orientation="vertical"
android:gravity="center"
tools:context=".FirstActivity">
<Button
android:id="@+id/btn_write_data"
android:layout_width="200dp"
android:layout_height="wrap_content"
android:onClick="doWriteData"
android:text="@string/write_data"
android:textSize="20sp" />
<Button
android:id="@+id/btn_jump_to_second"
android:layout_width="200dp"
android:layout_height="wrap_content"
android:onClick="doJumpToSecond"
android:enabled="false"
android:text="@string/jump_to_second"
android:textSize="20sp" />
</LinearLayout>
*查看预览效果
7、第二界面主布局资源文件
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/background1"
android:gravity="center"
tools:context=".SecondActivity">
<Button
android:id="@+id/btn_read_data"
android:layout_width="150dp"
android:layout_height="wrap_content"
android:text="@string/read_data"
android:textSize="20sp"/>
</LinearLayout>
8、第一界面类实现功能
*声明变量与常量
*获取共享参数对象
*获取编辑器对象
* 编写【写入】按钮单击事件处理方法
*编写【跳转第二个窗口】按钮单击事件处理方法
*查看完整代码
package net.zhx.share_data;
import androidx.appcompat.app.AppCompatActivity;
import android.content.Context;
import android.content.Intent;
import android.content.SharedPreferences;
import android.graphics.Paint;
import android.os.Bundle;
import android.view.View;
import android.widget.Toast;
public class FirstActivity extends AppCompatActivity {
private static final String NAME="person_info.xml";//配置文件名
private static final int MODE = Context.MODE_PRIVATE;//文件访问方式
private SharedPreferences sp;//共享参数对象
private SharedPreferences.Editor editor;//编辑器对象
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
//利用布局资源文件设置用户界面
setContentView(R.layout.activity_first);
//获取共享参数对象
sp=getSharedPreferences(NAME,MODE);
//获取编辑器对象
editor = sp.edit();
}
/**
* 【写入】按钮单击事件处理方法
* @param view
*/
public void doWriteData(View view){
//将数据写入编辑器
editor.putString("name","张某");
editor.putString("gender","男");
editor.putString("age","20");
editor.putString("hobby","游戏、音乐");
//提交数据,写入到指定的文件
if (editor.commit()){
Toast.makeText(this,"恭喜,数据写入文件成功!",Toast.LENGTH_SHORT).show();
findViewById(R.id.btn_jump_to_second).setEnabled(true);//让【跳转第二个窗口】按钮可用
}else {
Toast.makeText(this,"遗憾,数据写入文件失败!",Toast.LENGTH_SHORT).show();
}
}
public void doJumpToSecond(View view){
//创建跳转第二个窗口的意图
Intent intent=new Intent(this,SecondActivity.class);
//按意图启动第二个窗口
startActivity(intent);
}
}
9、第二界面类实现功能
*定义常量与变量
*获取共享参数对象
*获取编辑器对象
*编写【读取数据】按钮单击事件处理方法
*查看完整代码
package net.zhx.share_data;
import androidx.appcompat.app.AppCompatActivity;
import android.content.Context;
import android.content.SharedPreferences;
import android.os.Bundle;
import android.view.View;
import android.widget.Toast;
public class SecondActivity extends AppCompatActivity {
private static final String NAME="person_info.xml";//配置文件名
private static final int MODE = Context.MODE_PRIVATE;//文件访问方式
private SharedPreferences sp;//共享参数对象
private SharedPreferences.Editor editor;//编辑器对象
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
//利用布局资源文件设置用户界面
setContentView(R.layout.activity_second);
//获取共享参数对象
sp=getSharedPreferences(NAME,MODE);
//获取编辑器对象
editor = sp.edit();
}
/**
* 【读取数据】单击事件处理方法
* @param view
*/
public void doReadData(View view){
//通过共享参数对象读取文件数据
String name=sp.getString("name","");
String gender=sp.getString("gender","");
int age = sp.getInt("age",0);
String hobby=sp.getString("hobby","");
//创建个人信息字符串生成器
StringBuilder builder=new StringBuilder();
builder.append("姓名"+name+"\n")
.append("性别"+gender+"\n")
.append("年龄"+age+"\n")
.append("爱好"+hobby);
//获取个人信息字符串
String personInfo = builder.toString();
//通过吐司展示个人信息
Toast.makeText(this,personInfo,Toast.LENGTH_SHORT).show();
}
}