1

Spinnerが取り込まれた を作成しましたArrayList。に値を動的に追加したいArrayListので、Spinner動的に入力されます。ただし、 myArrayListに値を追加しようとすると、NullPointerException.

私は何が欠けていますか?修正する前にアダプターをリセットする必要がありArrayListますか?

これが私のコードです:

私のスピナー、配列リスト、およびアダプター:

deleteselection = (Spinner)view.findViewById(R.id.deletespinner);
portfoliosdelete = new ArrayList<String>();
portfoliosdelete.add("Select Portfolio");
adapterdeletetype = new ArrayAdapter<String>(this, android.R.layout.simple_spinner_item,portfoliosdelete){

    @Override
    public View getDropDownView(int position, View convertView, ViewGroup parent)
    {
        View v = null;

        // If this is the initial dummy entry, make it hidden
        if (position == 0) {
            TextView tv = new TextView(getContext());
            tv.setHeight(0);
            tv.setVisibility(View.GONE);
            v = tv;
        }
        else {
            // Pass convertView as null to prevent reuse of special case views
            v = super.getDropDownView(position, null, parent);
        }

        // Hide scroll bar because it appears sometimes unnecessarily, this does not prevent scrolling
        parent.setVerticalScrollBarEnabled(false);
        return v;
    }
};
adapterdeletetype.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
deleteselection.setAdapter(adapterdeletetype);

スピナーを動的に更新する私のコード:

 else if(users.contains(usernull)){
    pn1 = enterportfolioname.getText().toString();
    user1 = new PortfolioRecord(pn1, "someemail@gmail.com");
    users.remove(usernull);
    users.add(user1);
    portfoliosdelete.add(pn1); // <-- This causes a null pointer exception
    adapterdeletetype.notifyDataSetChanged();
    portfoliolist.invalidateViews();
4

2 に答える 2

1

以下のコードを使用してください。このコードは、ユーザーがスピナーから新しいアイテムを選択して追加すると、新しいアイテムを追加します。

コードサンプル:

レイアウト main.xml:

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

    <Spinner
        android:id="@+id/cmbNames"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />
</LinearLayout>

レイアウト spinner_item.xml

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

    <TextView
        android:id="@+id/tvName"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />
</LinearLayout>

活動クラス:

public class MainActivity extends Activity {
    private static final String NAME = "name";
    private static final String ADD_NEW_ITEM = "Add New Item";

    private SimpleAdapter adapter;
    private Spinner cmbNames;
    private List<HashMap<String, String>> lstNames;
    private int counter;

    private OnItemSelectedListener itemSelectedListener = new OnItemSelectedListener() {

        @Override
        public void onItemSelected(AdapterView<?> arg0, View arg1, int arg2,
                long arg3) {
            HashMap<String, String> map = lstNames.get(arg2);
            String name = map.get(NAME);
            if (name.equalsIgnoreCase(ADD_NEW_ITEM)) {
                lstNames.remove(map);
                counter++;
                addNewName(String.valueOf(counter));
                addNewName(ADD_NEW_ITEM);
                adapter.notifyDataSetChanged();
            }
        }

        @Override
        public void onNothingSelected(AdapterView<?> arg0) {
            // TODO Auto-generated method stub
        }
    };

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

        populateList();

        cmbNames = (Spinner) findViewById(R.id.cmbNames);
        adapter = new SimpleAdapter(this, lstNames, R.layout.spinner_item,
                new String[] { NAME }, new int[] { R.id.tvName });
        cmbNames.setAdapter(adapter);
        cmbNames.setOnItemSelectedListener(itemSelectedListener);
    }

    private void populateList() {
        lstNames = new ArrayList<HashMap<String, String>>();

        addNewName("abc");
        addNewName("pqr");
        addNewName("xyz");
        addNewName(ADD_NEW_ITEM);
    }

    private void addNewName(String name) {
        HashMap<String, String> map = new HashMap<String, String>();
        map.put(NAME, name);
        lstNames.add(map);
    }
}
于 2012-08-24T13:52:17.053 に答える
0

arraylist の代わりに、adapterdeletetype で delete を呼び出してみてください。失敗した場合は、logcat の出力を投稿してください。

于 2012-08-24T13:52:03.260 に答える