1

動的アイテムを含むスピナーがあります。スピナーをクリックすると、新しいアイテムのセットが読み込まれます。実際のデバイスで完全に動作します。しかし、エミュレーターでアプリケーションを実行すると、スピナーをクリックした後にNullPointerExceptionがスローされます。私は誰からも解決策を見つけていません。誰か助けてくれませんか?

LogCat からのエラーは次のとおりです (エラーは、さまざまなデバイスと API レベルのすべてのエミュレーターで同じですが、実際のデバイスでは発生しません)。ご覧のとおり、コードのどの行も指していません。

java.lang.NullPointerException
at android.widget.Spinner.makeAndAddView(Spinner.java:534)
at android.widget.Spinner.layout(Spinner.java:485)
at android.widget.Spinner.onLayout(Spinner.java:449)
at android.view.View.layout(View.java:13754)
at android.view.ViewGroup.layout(ViewGroup.java:4362)
at android.widget.RelativeLayout.onLayout(RelativeLayout.java:948)
at android.view.View.layout(View.java:13754)
at android.view.ViewGroup.layout(ViewGroup.java:4362)
at android.widget.RelativeLayout.onLayout(RelativeLayout.java:948)
at android.view.View.layout(View.java:13754)
...
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:786)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:553)
at dalvik.system.NativeStart.main(Native Method)

リストにアイテムを配置する方法は次のとおりです。

List<MyObject> itemsList = getItemsFromMySource();
if (itemsList!=null && itemsList.size() > 0) {
    CustomListAdapter adapter = new CustomListAdapter(getActivity(), itemsList);
    mySpinner.setAdapter(adapter);
}

私の CustomListAdapter は、スピナーのデフォルト レイアウトを使用します。

public class CustomListAdapter extends ArrayAdapter<MyObject> {

    public CustomListAdapter (Context context, List<MyObject> listItems) {
        super(context, android.R.layout.simple_spinner_item, listItems);
        setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
    }


    @Override
    public View getView(final int item, View convertView, final ViewGroup parent) {
        final LayoutInflater inflater = (LayoutInflater) getContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE);
        convertView = inflater.inflate(android.R.layout.simple_spinner_item, parent, false);

        final TextView text = (TextView) convertView.findViewById(android.R.id.text1);
        text.setText(getItem(item).getItemName());

        return convertView;
    }

    @Override
    public View getDropDownView(final int item, View convertView, final ViewGroup parent) {
        final LayoutInflater inflater = (LayoutInflater) getContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE);
        convertView = inflater.inflate(android.R.layout.simple_spinner_dropdown_item, parent, false);

        final TextView text = (TextView) convertView.findViewById(android.R.id.text1);
        text.setText(getItem(item).getItemName());

        return convertView;
    }

どんな助けでも大歓迎です。

4

2 に答える 2

0

ここで android.R.layout.simple_spinner_dropdown_item のコンテンツ:

<?xml version="1.0" encoding="utf-8"?>
<!--
/* //device/apps/common/assets/res/any/layout/simple_spinner_item.xml
**
** Copyright 2008, The Android Open Source Project
**
** Licensed under the Apache License, Version 2.0 (the "License"); 
** you may not use this file except in compliance with the License. 
** You may obtain a copy of the License at 
**
**     http://www.apache.org/licenses/LICENSE-2.0 
**
** Unless required by applicable law or agreed to in writing, software 
** distributed under the License is distributed on an "AS IS" BASIS, 
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
** See the License for the specific language governing permissions and 
** limitations under the License.
*/
-->
<CheckedTextView xmlns:android="http://schemas.android.com/apk/res/android" 
    android:id="@android:id/text1"
    style="?android:attr/spinnerDropDownItemStyle"
    android:singleLine="true"
    android:layout_width="match_parent"
    android:layout_height="?android:attr/dropdownListPreferredItemHeight"
    android:ellipsize="marquee"
    android:textAlignment="inherit"/>

res/layout フォルダーに「simple_spinner_dropdown_item.xml」という名前の新しいファイルを作成してください。次に、前のコードをコピーして貼り付けます。

android.R.layout.simple_spinner_dropdown_item次に、で置き換えR.layout.simple_spinner_dropdown_itemますCustomListAdapter

ここでの主なアイデアは、エミュレーターに android simple_spinner_dropdown_item.xml が統合されていない可能性があるため、それをアプリにコピーすることで、inflater.inflate(android.R.layout.simple_spinner_dropdown_item, parent, false);null を返さないようにし、NullPointerException を取得することです。

うまくいくかどうかはわかりませんが、試してみる価値はあります。

于 2013-10-31T17:07:12.797 に答える