如何在 Android 中使用全局上下文存储 JSON 对象单例?


在进入示例之前,我们应该了解单例设计模式是什么。单例是一种设计模式,它将类的实例化限制为只有一个实例。值得注意的用途包括控制并发和创建应用程序访问其数据存储的中心访问点。

此示例演示如何在 Android 中使用全局上下文存储 JSON 对象单例

步骤 1 - 在 Android Studio 中创建一个新项目,转到文件 ⇒ 新建项目,并填写所有必需的详细信息以创建新项目。

步骤 2 - 将以下代码添加到 res/layout/activity_main.xml。

<?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"
   tools:context = ".MainActivity"
   android:orientation = "vertical">
   <Button
      android:id = "@+id/show"
      android:text = "save json in singleTone"
      android:layout_width = "wrap_content"
      android:layout_height = "wrap_content" />
</LinearLayout>

在上面的代码中,我们添加了一个按钮。当用户点击“显示”按钮时,它将在吐司中显示 JSON 对象。

步骤 3 - 将以下代码添加到 src/MainActivity.java

package com.example.andy.myapplication;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.view.View;
import android.widget.Button;
import android.widget.Toast;
import org.json.JSONException;
import org.json.JSONObject;
public class MainActivity extends AppCompatActivity {
   Button show;
   JSONObject jsonObject;
   singleTonExample singletonexample;
   {
      try {
         jsonObject = new JSONObject("{\"balance\": 1000.21, \"num\":100, \"is_vip\":true,  \"name\":\"foo\"}");
      } catch (JSONException e) {
         e.printStackTrace();
      }
   }
   @Override
   protected void onCreate(Bundle savedInstanceState) {
      super.onCreate(savedInstanceState);
      setContentView(R.layout.activity_main);
      show = findViewById(R.id.show);
      singletonexample = singleTonExample.getInstance();
      singletonexample.init(getApplicationContext());
      show.setOnClickListener(new View.OnClickListener() {
         @Override
         public void onClick(View v) {
            singletonexample.storeJson(jsonObject);
            Toast.makeText(singleTonExample.get(), singletonexample.getJSON(), Toast.LENGTH_LONG).show();
         }
      });
   }
}

在上面的代码中,我们使用了 singleTonExample 作为单例类,因此创建一个名为 singleTonExample.java 的调用并添加以下代码 -

package com.example.andy.myapplication;
import android.app.Dialog;
import android.content.Context;
import android.view.Window;
import org.json.JSONObject;
import java.util.Arrays;
public class singleTonExample {
   private Context appContext;
   JSONObject i1;
   private static final singleTonExample ourInstance = new singleTonExample();
   public void init(Context context) {
      if(appContext = = null) {
         this.appContext = context;
      }
   }
   private Context getContext() {
      return appContext;
   }
   public static Context get() {
      return getInstance().getContext();
   }
   public static synchronized singleTonExample getInstance() {
      return ourInstance;
   }
   private singleTonExample() { }
   public void storeJson(JSONObject i1) {
      this.i1 = i1;
   }
   public String getJSON() {
      return i1.toString();
   }
}

让我们尝试运行您的应用程序。我假设您已将您的实际 Android 移动设备连接到您的计算机。要从 Android Studio 运行应用程序,请打开您的一个项目活动文件,然后单击运行 工具栏中的图标。选择您的移动设备作为选项,然后检查您的移动设备,它将显示您的默认屏幕 –

现在点击上面的按钮,它将使用全局上下文在吐司中显示 JSON 对象,如下所示 –

点击 这里 下载项目代码

更新于:2019 年 7 月 30 日

285 次浏览

启动您的 职业生涯

通过完成课程获得认证

开始
广告