gpt4 book ai didi

java - 检索 SharedPreferences 在我的 SettingsActivity 中不起作用

转载 作者:行者123 更新时间:2023-12-01 14:57:59 26 4
gpt4 key购买 nike

我在主 Activity (称为 ScoreboardActivity)中定义了一些 SharedPreferences。这些值肯定要么被检索,要么正确的默认值正在工作。但是,我现在尝试设置一个 SettingsActivity 屏幕,以便用户可以更改这些值,但它无法正常工作。当新的 Activity 打开时,值不会加载到 XML 布局中的字段中。

(正如您所见,我对此很陌生,所以请友善)

这是我与共享首选项相关的ScoreboardActivity代码(有效):

// get the preferences
prefs = getPreferences(MODE_PRIVATE);

// Load the values or defaults from the SharedPreferences
msMainClockStart = prefs.getLong( "Default_Main_Clock", 480000); // 8 minute default
useShotClock = prefs.getBoolean( "Use_ShotClock", false );
msShotClockStart = prefs.getLong( "Default_Shot_Clock", 24000); // 24 second default
tvPeriodPrefix = prefs.getString( "Period_Prefix", getResources().getString(R.string.period) );
valMaxPeriods = prefs.getInt( "Max_Periods", 4);


Here is my code when the menu button is pressed and Settings is clicked on (I think this is wrong but the settings.xml page does open:

@Override
public boolean onOptionsItemSelected(MenuItem item) {
setContentView(R.layout.settings);

return super.onOptionsItemSelected(item);
}

这是我的设置 Activity :

 package com.example.ultimatescoreclock;

import android.app.Activity;
import android.content.SharedPreferences;
import android.os.Bundle;
import android.widget.CheckBox;
import android.widget.EditText;

public class SettingsActivity extends Activity {

ScoreboardActivity scoreboard = new ScoreboardActivity();
SharedPreferences settings = scoreboard.prefs;

@Override
protected void onCreate(Bundle savedInstanceState) {
EditText
strMainMinutes,
strShotSeconds,
strPeriodPrefix,
strMaxPeriods;

CheckBox
cbUseShotClock;

super.onCreate(savedInstanceState);
setContentView(R.layout.settings);

// Load the values or defaults from the SharedPreferences
scoreboard.msMainClockStart = settings.getLong( "Default_Main_Clock", 480000); // 8 minute default
scoreboard.useShotClock = settings.getBoolean( "Use_ShotClock", true );
scoreboard.msShotClockStart = settings.getLong( "Default_Shot_Clock", 24000); // 24 second default
scoreboard.tvPeriodPrefix = settings.getString( "Period_Prefix", getResources().getString(R.string.period) );
scoreboard.valMaxPeriods = settings.getInt( "Max_Periods", 4);

strMainMinutes = (EditText) findViewById(R.id.numMainMinutes);
cbUseShotClock = (CheckBox) findViewById(R.id.cbUseShotClock);
strShotSeconds = (EditText) findViewById(R.id.numShotSeconds);
strPeriodPrefix = (EditText) findViewById(R.id.periodPrefix);
strMaxPeriods = (EditText) findViewById(R.id.periodMax);


strMainMinutes.setText( Long.toString(scoreboard.msMainClockStart / 1000) );
cbUseShotClock.setChecked( scoreboard.useShotClock );
strShotSeconds.setText( Long.toString(scoreboard.msShotClockStart / 1000) );
strPeriodPrefix.setText( scoreboard.tvPeriodPrefix );
strMaxPeriods.setText( Integer.toString(scoreboard.valMaxPeriods) );
}


}

这是我的 XML 布局:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >

<TextView
android:id="@+id/lblMainClock"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Main Clock Default (mins)" />

<EditText
android:id="@+id/numMainMinutes"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:ems="10"
android:inputType="number"
android:minEms="4" />

<CheckBox
android:id="@+id/cbUseShotClock"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center_vertical|start"
android:text="Use Shot Clock" />

<TextView
android:id="@+id/lblShotClock"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Shot Clock Default (secs)" />

<EditText
android:id="@+id/numShotSeconds"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:ems="10"
android:inputType="number"
android:minEms="4" >

<requestFocus />
</EditText>

<TextView
android:id="@+id/lblPeriodPrefix"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Period Prefix (e.g. Q, Shift, etc)" />

<EditText
android:id="@+id/periodPrefix"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:ems="10" />

<TextView
android:id="@+id/lblMaxPeriods"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Maximum Number of Periods" />

<EditText
android:id="@+id/periodMax"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:minEms="4" />

最佳答案

你真的应该先学习 Android 的基础知识。

您实例化 ScoreboardActivity 的方式不是 Android 实例化 Activity 的方式。

在您的代码中,我没有找到任何与将数据保存到SharedPreferences相关的代码。您放在那里的代码仅用于从两个类中的 SharedPreferences 检索数据。

当您使用 UI 组件更改值时,例如更改 CheckBox 状态、更改 EditText 中的文本等,您需要在最终确定值(要求用户保存或完成当前 Activity)时将它们再次保存到 SharedPreferences 中。

我建议你阅读一些 android-sdk 的基础知识。

  • Here有一些关于保存和检索的示例和解释来自 SharedPreferences
  • 的数据
  • Here是一个关于如何启动 Activity 的 Android 教程。(在 Activity 之间切换)

关于java - 检索 SharedPreferences 在我的 SettingsActivity 中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14097829/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com