0

メインアクティビティ(ScoreboardActivityと呼ばれる)でいくつかのSharedPreferencesを定義しました。値は確実に取得されているか、正しいデフォルト値が機能しています。SettingsActivityただし、ユーザーがこれらの値を変更できるように画面を設定しようとしましたが、正しく機能していません。新しいアクティビティが開いているとき、値は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);
    }

これが私のSettingsActivityです:

 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" />

4

2 に答える 2

1

Androidの基本を最初に学ぶべきです。

インスタンス化するScoreboardActivity方法は、Android のインスタンス化の方法ではありませんActivity

あなたのコードでは、 SAVING DATA to に関連するコードは見つかりませんでしたSharedPreferences。そこに配置したコードはSharedPreferences、両方のクラスからデータを取得するためだけのものです。

また、CheckBox の状態の変更、EditText のテキストの変更など、UI コンポーネントを使用して値を変更する場合は、値を確定する (ユーザーに現在のアクティビティを保存または終了するように求める) 間に、再度 SharedPreferences に保存する必要があります。

android-sdk の基本を読むことをお勧めします。

于 2012-12-31T06:41:07.857 に答える
0

@ Eric&@AdilSoomro-コメントありがとうございます。あなたは私を正しい方向に導き、SettingsActivityでSharedPreferencesの取得を実行する方法を発見しました。

これは、将来興味があるかもしれない人のために私の変更されたコードです...

初期値を取得するメインアクティビティコード:

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

    // Load the values or defaults from the SharedPreferences
    msMainClockStart = prefs.getLong( "Default_Main_Clock", DEFAULT_MAIN_CLOCK_START);
    useShotClock = prefs.getBoolean( "Use_ShotClock", DEFAULT_USE_SHOT_CLOCK );
    msShotClockStart = prefs.getLong( "Default_Shot_Clock", DEFAULT_SHOT_CLOCK_START);
    tvPeriodPrefix = prefs.getString( "Period_Prefix", DEFAULT_PERIOD_PREFIX );
    valMaxPeriods = prefs.getInt( "Max_Periods", DEFAULT_PERIOD_MAX );

onOptionsItemSelectedメソッド:

@Override
public boolean onOptionsItemSelected(MenuItem item) {
    Intent intent = new Intent(this, SettingsActivity.class);       
    startActivity(intent);

    return super.onOptionsItemSelected(item);
}

SettingsActivityクラス:

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 {

EditText
    strMainMinutes,
    strShotSeconds,
    strPeriodPrefix,
    strMaxPeriods;

long
    msMainClockStart,
    msShotClockStart;

int valMaxPeriods;

CheckBox cbUseShotClock;

SharedPreferences prefs;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.settings);

    // get the Shared Preferences
    prefs  = getPreferences(MODE_PRIVATE);

    // assign the views
    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);

    // Load the values or defaults from the SharedPreferences
    msMainClockStart = prefs.getLong( "Default_Main_Clock", DEFAULT_MAIN_CLOCK_START);
    cbUseShotClock.setChecked( prefs.getBoolean( "Use_ShotClock", DEFAULT_USE_SHOT_CLOCK) );
    msShotClockStart = prefs.getLong( "Default_Shot_Clock", DEFAULT_SHOT_CLOCK_START);
    strPeriodPrefix.setText( prefs.getString("Period_Prefix", DEFAULT_PERIOD_PREFIX) );
    valMaxPeriods = prefs.getInt( "Max_Periods", DEFAULT_PERIOD_MAX );

    // convert the values that need converting
    strMainMinutes.setText( Long.toString(msMainClockStart / 60000) );
    strShotSeconds.setText( Long.toString(msShotClockStart / 1000) );
    strMaxPeriods.setText( Integer.toString(valMaxPeriods) );

}

}
于 2012-12-31T22:24:17.767 に答える