[使用SharedPreferences从另一个活动中添加ArrayListAdapter中的项目

问题描述 投票:1回答:1

我想将MainActivity中的某些元素添加到另一个具有activityarrayList中,但是我的问题是,当我插入某些内容时,交易完成了,但是只添加了1个元素。我想向arrayList添加多个元素。在MainActivity中,我有2 EditText和2 buttons(保存和GoToNextActivity,我打算从MainActivity过渡到list.class)我该怎么做才能向其中添加更多元素按下保存按钮时列出?

public class items {

private String username;
private String password;

items(String user,String parola){
    username=user;
    password=parola;
}

public String getPassword() {
    return password;
}

public String getUsername() {
    return username;
}
}


public class itemsAdapter extends ArrayAdapter<items> {

private static final String LOG_TAG = itemsAdapter.class.getSimpleName();

public itemsAdapter(Activity context, ArrayList<items> item) {
    super(context, 0,item);
}

public View getView(int position, View convertView, ViewGroup parent){

    View listItemView = convertView;
    if (listItemView == null) {
        listItemView = LayoutInflater.from(getContext()).inflate(R.layout.list_items, parent, false);
    }

    items curentItems=getItem(position);

    TextView user=(TextView)listItemView.findViewById(R.id.list_user);
    TextView password=(TextView)listItemView.findViewById(R.id.list_password);

    user.setText(curentItems.getUsername());
    password.setText(curentItems.getPassword());


    return listItemView;
}
}

公共类列表扩展了AppCompatActivity {

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

    SharedPreferences sharedPreferences= getSharedPreferences("user", Context.MODE_PRIVATE);
    String name=sharedPreferences.getString("username","");
    String password=sharedPreferences.getString("password","");

    final ArrayList<items> login = new ArrayList<items>();
    login.add(new items(name,password));

    itemsAdapter itemsAdapter=new itemsAdapter(this,login);

    ListView listView = (ListView) findViewById(R.id.list_activity_container);
    listView.setAdapter(itemsAdapter);

}
}

公共类MainActivity扩展了AppCompatActivity {

EditText username;
EditText password;
TextView show;
Button save;
Button display;
Button go;
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    username=(EditText)findViewById(R.id.username);
    password=(EditText)findViewById(R.id.password);
    show=(TextView)findViewById(R.id.show);
    save=(Button)findViewById(R.id.save);
    display=(Button)findViewById(R.id.displayInfo);
    go=(Button)findViewById(R.id.goToList);

    save.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            SharedPreferences sharedPreferences= getSharedPreferences("user", Context.MODE_PRIVATE);
            SharedPreferences.Editor editor=sharedPreferences.edit();

            editor.putString("username",username.getText().toString());
            editor.putString("password",password.getText().toString());
            editor.apply();

          //  Toast.makeText(this,"Saved",Toast.LENGTH_LONG).show();
        }
    });

    display.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            SharedPreferences sharedPreferences= getSharedPreferences("user", Context.MODE_PRIVATE);
            String name=sharedPreferences.getString("username","");
            String password=sharedPreferences.getString("password","");
            show.setText(name+"  "+password);
        }
    });

    go.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            Intent intent=new Intent(MainActivity.this,list.class);
            startActivity(intent);
        }
    });
}
}
android android-listview sharedpreferences android-adapter
1个回答
0
投票

Shared Preferences保存键-值对。要在SharedPreferences中保存多个元素,您需要为每个元素分配一个唯一的键。让我们将密钥命名为“ userID”。

int userID = 0;

并将用户详细信息保存到这样的共享首选项中

 SharedPreferences sharedPreferences= getSharedPreferences("user", Context.MODE_PRIVATE);
        SharedPreferences.Editor editor=sharedPreferences.edit();

        editor.putString("username_"+userID,username.getText().toString());
        editor.putString("password_"+userID,password.getText().toString());
        editor.apply();

[添加其他用户对象时,增加用户ID

++userID;

所以现在您的shared preferences将包含两个具有键<username_0><username_1>的元素。

同样在从preferences获取数据时,请不要忘记使用正确的密钥。

String name=sharedPreferences.getString("username_"+userID,"");

For循环:假设您有5个元素,并且要将它们添加到List

onCreateMainActivity中。

 final ArrayList<items> login = new ArrayList<items>(itemCount);
    for (int i = 0; i < 5; i++) {
        // command below will be executed 5 times, and i will range from 0 to 4(both inclusive)
        login.add(new items("name" + i, "password" + i));
    }
    // now our login list has 5 elements(namely name0,name1...name4)

在保存按钮的单击侦听器中,将整个list保存到shared preferences

save.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            SharedPreferences sharedPreferences = getSharedPreferences("user", Context.MODE_PRIVATE);
            SharedPreferences.Editor editor = sharedPreferences.edit();

            for (int i = 0; i < 5; i++) {
                // save entire list using loop.
                editor.putString("username" + i, login.get(i).getUsername());
                editor.putString("password" + i, login.get(i).getPassword());
            }
            editor.apply();

            //  Toast.makeText(this,"Saved",Toast.LENGTH_LONG).show();
        }
    });

List activity中,从首选项中读取数据。

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

    final ArrayList<items> login = new ArrayList<items>();

    SharedPreferences sharedPreferences = getSharedPreferences("user", Context.MODE_PRIVATE);
    for (int i = 0; i < 5; i++) {
        String name = sharedPreferences.getString("username" + i, "");
        String password = sharedPreferences.getString("password" + i, "");

        login.add(new items(name, password));
    }

    itemsAdapter itemsAdapter = new itemsAdapter(this, login);

    ListView listView = (ListView) findViewById(R.id.list_activity_container);
    listView.setAdapter(itemsAdapter);

}

但是,您不需要从ListActivity中读取数据,您可以将数据捆绑在用于启动shared preferencesIntent中,并可以在ListActivity中从Intent中获取数据。

© www.soinside.com 2019 - 2024. All rights reserved.