2

パスワードをアクティビティに保存しようとしましたが、別のアクティビティに復元したいのですが、アプリケーションが 2 番目のアクティビティを起動するとクラッシュします。誰かが私を助けることができますか?

package com.example.test;

public class MainActivity extends Activity {

    String finall;

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

        String FILENAME = "hello_file.txt";
        String string = "1234";

        FileOutputStream fos;
        try
        {
            fos = openFileOutput(FILENAME, Context.MODE_PRIVATE);
            fos.write(string.getBytes());
            fos.close();
        } 
        catch (FileNotFoundException e) { e.printStackTrace(); } 
        catch (IOException e) { e.printStackTrace(); }

        try
        {
            FileInputStream in = openFileInput("hello_file.txt");
            StringBuffer fileContent = new StringBuffer("");
            byte[] buffer = new byte[4];

            while(in.read(buffer) != -1)
            {
                fileContent.append(new String(buffer));
            }
            finall = fileContent.toString();
            in.close();
        }
        catch (FileNotFoundException e) { e.printStackTrace(); } 
        catch (IOException e) { e.printStackTrace(); }

        Button button = (Button)findViewById(R.id.button);
        button.setText(finall);
        button.setOnClickListener(new View.OnClickListener()
        {
            @Override
            public void onClick(View v) {
                sendGo(v);

            }
        });
    }

    public void sendGo(View v)
    {
        Intent intent = new Intent(this, SecondActivity.class);
        startActivity(intent);
    }
}

同じアクティビティで保存したファイルを読み取ることができるため、最初の部分は機能します。しかし、それを別のアクティビティに読み込もうとすると、うまくいきません:

package com.example.test;

public class SecondActivity extends Activity {

    String finall="";

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_second);
        // Show the Up button in the action bar.
        setupActionBar();

        try
        {
            FileInputStream in = openFileInput("hello_file.txt");
            StringBuffer fileContent = new StringBuffer("");

            byte[] buffer = new byte[4];

            while(in.read(buffer) != -1)
            {
                fileContent.append(new String(buffer));
            }
            finall = fileContent.toString();
            in.close();
        }
        catch (FileNotFoundException e) { e.printStackTrace(); } 
        catch (IOException e) { e.printStackTrace(); }

        TextView text = (TextView)findViewById(R.id.mehmet);
        text.setText(finall);
    }



    @TargetApi(Build.VERSION_CODES.HONEYCOMB)
    private void setupActionBar() {
        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB) {
            getActionBar().setDisplayHomeAsUpEnabled(true);
        }
    }


    @Override
    public boolean onOptionsItemSelected(MenuItem item) {
        switch (item.getItemId()) {
        case android.R.id.home:
            // This ID represents the Home or Up button. In the case of this
            // activity, the Up button is shown. Use NavUtils to allow users
            // to navigate up one level in the application structure. For
            // more details, see the Navigation pattern on Android Design:
            //
            // http://developer.android.com/design/patterns/navigation.html#up-vs-back
            //
            NavUtils.navigateUpFromSameTask(this);
            return true;
        }
        return super.onOptionsItemSelected(item);
    }

}
4

5 に答える 5

3

アクティビティ間でデータを共有したい場合は、次のことができます。

  1. 追加データを意図してバンドルに入れる
  2. SharePreferences (アプリケーションを閉じて再起動してもアクセスできます)
  3. SqLiteデータベース(アプリを閉じて再起動してもアクセス可能)
  4. 静的クラス

これは、SharedPrefs を使用する方法です ->

SharedPreferences pref = getBaseContext().getSharedPreferences(PREFERENCE_NAME, 0); 
SharedPreferences.Editor editor editor = pref.edit();
editor.putString("KEY_PASSORD", "Password to Save");
editor.commit();

そして、SharedPrefs からパスワードを取得したい場合は、これを行います ->

SharedPreferences Pref = getBaseContext().getSharedPreferences(PREFERENCE_NAME, 0);
String password = pref.getString("KEY_PASSWORD","Default Password");
于 2013-05-12T18:54:56.260 に答える
1

アクティビティ間でデータを共有する場合は、次を使用できます。

  • 追加データを意図してバンドルに入れる
  • Application クラスの SharePreferences
  • SQLite データベース
  • 静的変数
于 2013-05-12T18:50:40.543 に答える
0

最初のアクティビティで SharePreferences を使用して、パスワードを保存できます。

package com.example.test;

public class FirstActivity extends Activity {
SharedPreferences pref;
SharedPreferences.Editor editor editor;

private final String KEY_PASSWORD = "password";
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    Button button = (Button)findViewById(R.id.button);
    button.setText(finall);
    button.setOnClickListener(new View.OnClickListener()
    {
        @Override
        public void onClick(View v) {
            pref  = getSharedPreferences("passwordPref", 0); 
            SharedPreferences.Editor editor editor = pref.edit();
            editor.putString(KEY_PASSWORD ,YourEditBox.getText());
            editor.commit();
            Intent intent = new Intent(FirstActivity.this, SecondActivity.class);
            startActivity(intent);

        }
    });

}

}

2 番目のアクティビティでは、これを使用してパスワードを取得します。

package com.example.test;

public class SecondActivity extends Activity {
SharedPreferences pref;
SharedPreferences.Editor editor editor;

private final String KEY_PASSWORD = "password";
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    pref = getSharedPreferences("passwordPref", 0);
    YourEditText.setText(pref.getString(KEY_PASSWORD,""));
}

}
于 2013-05-12T19:11:07.153 に答える