1

このエラーが発生しています:

Caused by: java.lang.RuntimeException: 
    Your content must have a ListView whose id attribute is 'android.R.id.list'

これは HomeScreen.java です。

public class HomeScreen extends ListActivity {

    String TAG = AppConstants.TAG;

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

        CBasicInfo basicinfo_data[] = new CBasicInfo[]
                {
                    new CBasicInfo("Projet A", 1, new Date()),
                    new CBasicInfo("Projet A", 2, new Date()),
                    new CBasicInfo("Projet A", 3, new Date()),
                    new CBasicInfo("Projet A", 4, new Date()),
                    new CBasicInfo("Projet A", 5, new Date())
                };

        BasicInfoAdapter adapter = new BasicInfoAdapter(this, R.layout.home_screen_list_item, basicinfo_data);
        ListView list_view = (ListView)findViewById(R.id.lvSavedProjects);
        list_view.setAdapter(adapter);
    }
}

そして、ここで私のアダプター BasicInfoAdapter.java:

public class BasicInfoAdapter extends ArrayAdapter<CBasicInfo>{

    Context context; 
    int layoutResourceId;    
    CBasicInfo data[] = null;

    public BasicInfoAdapter(Context context, int layoutResourceId, CBasicInfo[] data) {
        super(context, layoutResourceId, data);
        this.layoutResourceId = layoutResourceId;
        this.context = context;
        this.data = data;
    }

    @Override
    public View getView(int position, View convertView, ViewGroup parent) {
        View row = convertView;
        BasicInfoHolder holder = null;

        if(row == null)
        {
            LayoutInflater inflater = ((Activity)context).getLayoutInflater();
            row = inflater.inflate(layoutResourceId, parent, false);

            holder = new BasicInfoHolder();
            holder.txtName = (TextView)row.findViewById(R.id.tvHomeScreenProjectName);
            holder.txtPid = (TextView)row.findViewById(R.id.tvHomeScreenPid);
            holder.txtDDate = (TextView)row.findViewById(R.id.tvHomeScreenDownloadDate);

            row.setTag(holder);
        }
        else
        {
            holder = (BasicInfoHolder)row.getTag();
        }

        CBasicInfo bi = data[position];
        holder.txtName.setText(bi.getName());
        holder.txtPid.setText(bi.getId());
        holder.txtDDate.setText(bi.getExportDate().toString());

        return row;
    }

    static class BasicInfoHolder
    {
        TextView txtName;
        TextView txtPid;
        TextView txtDDate;
    }
}

私のhome.xmlは次のとおりです。

<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:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/lbl_saved_projects"
        android:textAppearance="?android:attr/textAppearanceLarge" />
    <ListView
        android:id="@+id/lvSavedProjects"
        android:name="android.app.ListFragment"
        android:layout_width="match_parent"
        android:layout_height="0dip"
        android:layout_weight="0.86" />
    <Button
        android:id="@+id/bDownloadMoreProjects"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="@string/lbl_download_more_projects" />
</LinearLayout>

ここで私は一体何を間違っているのですか?

どうも

編集:

スタック トレースは次を示します。

FATAL EXCEPTION: main
android.content.res.Resources$NotFoundException: String resource ID #0x1
    at android.content.res.Resources.getText(Resources.java:247)
    at android.widget.TextView.setText(TextView.java:3473)
    at com.snip.tnc.SnipForAndroid.BasicInfoAdapter.getView(BasicInfoAdapter.java:48)
    at android.widget.AbsListView.obtainView(AbsListView.java:2033)
    at android.widget.ListView.makeAndAddView(ListView.java:1772)
    at android.widget.ListView.fillDown(ListView.java:672)
    at android.widget.ListView.fillFromTop(ListView.java:732)
    at android.widget.ListView.layoutChildren(ListView.java:1625)
    at android.widget.AbsListView.onLayout(AbsListView.java:1863)
    at android.view.View.layout(View.java:11278)
    at android.view.ViewGroup.layout(ViewGroup.java:4224)
    at android.widget.LinearLayout.setChildFrame(LinearLayout.java:1628)
    at android.widget.LinearLayout.layoutVertical(LinearLayout.java:1486)
    at android.widget.LinearLayout.onLayout(LinearLayout.java:1399)
    at android.view.View.layout(View.java:11278)
    at android.view.ViewGroup.layout(ViewGroup.java:4224)
    at android.widget.FrameLayout.onLayout(FrameLayout.java:431)
    at android.view.View.layout(View.java:11278)
    at android.view.ViewGroup.layout(ViewGroup.java:4224)
    at android.widget.LinearLayout.setChildFrame(LinearLayout.java:1628)
    at android.widget.LinearLayout.layoutVertical(LinearLayout.java:1486)
    at android.widget.LinearLayout.onLayout(LinearLayout.java:1399)
    at android.view.View.layout(View.java:11278)
    at android.view.ViewGroup.layout(ViewGroup.java:4224)
    at android.widget.FrameLayout.onLayout(FrameLayout.java:431)
    at android.view.View.layout(View.java:11278)
    at android.view.ViewGroup.layout(ViewGroup.java:4224)
    at android.view.ViewRootImpl.performTraversals(ViewRootImpl.java:1489)
    at android.view.ViewRootImpl.handleMessage(ViewRootImpl.java:2442)
    at android.os.Handler.dispatchMessage(Handler.java:99)
    at android.os.Looper.loop(Looper.java:137)
    at android.app.ActivityThread.main(ActivityThread.java:4424)
    at java.lang.reflect.Method.invokeNative(Native Method)
    at java.lang.reflect.Method.invoke(Method.java:511)
    at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:784)
    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:551)
    at dalvik.system.NativeStart.main(Native Method)
4

2 に答える 2

2

エラーは非常に明確です。

コンテンツには、id 属性が「android.R.id.list」である ListView が必要です。

では をお持ちではないようですR.layout.home。ところで、あなたの問題はAdaptersとは何の関係もありませんListActivity

ListViewレイアウトのには、id属性としてこれが必要です。

android:id="@android:id/list`

あなたのandroid:name属性がそこで何をしているのかわかりません。

于 2012-06-03T22:49:57.217 に答える
1

K-Ballo が指摘しているように、 a のレイアウトにはwith idListActivityが必要です。最初の部分 ( ) は次のように変換され、2 番目の部分はそう...ListViewandroid.R.id.listandroid.R@android:id/list

あなたの id を に設定ListViewします@android:id/list。自動的に使用されます。

次に、使用する行を削除する必要がありますfindViewById(...)( a には必要ありませんListActivity)。次に、使用するだけです...

setListAdapter(adapter);

上記の公開メソッドが自動的に設定するため、ListViewを設定するために を見つける必要はありません。AdapterListActivity

ListViewただし、他の目的でが必要な場合は、...

getListView();
于 2012-06-03T22:58:46.167 に答える