`
wangyang191
  • 浏览: 32893 次
  • 性别: Icon_minigender_1
  • 来自: 天津
社区版块
存档分类
最新评论

Your content must have a ListView whose id attribute is 'android.R.id.list'解决办法

阅读更多
这个错误提示很显然是在setContentView(R.layout.main)的地方设置的布局页面缺少一个id为android.R.id.list的ListView控件,解决方式如下:
在main.xml页面中添加如下代码:
<ListView android:id="@android:id/list"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
</ListView>
分享到:
评论

相关推荐

    Android Menu和ListView 整合设计 源码

    Android Menu和ListView 整合设计 源码 package com.MyMenu; import android.app.Activity; import android.database.Cursor; import android.database.sqlite.SQLiteCursor; import android.os.Bundle; import ...

    android的listview嵌套listview,列表嵌套列表 android studio版本

    ListView childListView = (ListView) view.findViewById(R.id.child_list_view); childListView.setAdapter(childAdapter); } }); ``` 在实际开发中,为了优化性能,通常会使用ViewHolder模式来减少视图查找的...

    ListView后台更新报错:java.lang.IllegalStateException

    Make sure the content of your adapter is not modified from a background thread, but only from the UI thread. [in ListView(2131230720, class android.widget.ListView) with Adapter(class ...

    Android ListView简单应用

    MainActivity.this,android.R.layout.simple_list_item_1,msWordS ); ListView listView = findViewById(R.id.Main_ListView); listView.setAdapter(arrayAdapter); } private String[] msWordS={"A","B",...

    Android应用源码之ListView滚动气泡提示_Android.zip

    Android应用源码之ListView滚动气泡提示_Android

    android ListView简单实例

    ListView listView = findViewById(R.id.list_view); listView.setAdapter(adapter); ``` 4. **监听ListView的点击事件**:可选地,我们可以添加一个OnItemClickListener来处理用户点击列表项的事件。 ```java ...

    android ListView中RadioinButton实现单选2.zip

    在Android开发中,ListView是一种常用的组件,用于展示可滚动的多行数据列表。在某些应用场景中,我们可能希望在一个ListView的每一行内设置RadioButton,让用户只能选择一个选项,这就涉及到了ListView与...

    Android之用PopupWindow实现弹出listview形式的菜单

    ListView listView = (ListView) popupView.findViewById(R.id.popup_list); listView.setAdapter(adapter); ``` 4. **监听ListView的点击事件**:为`ListView`添加一个`OnItemClickListener`,当用户点击某一项时...

    android多选ListView示例

    ListView listView = (ListView) findViewById(R.id.list_view); listView.setChoiceMode(ListView.CHOICE_MODE_MULTIPLE); ``` 二、Adapter的使用 ListView的数据源通常是通过Adapter来提供的,它可以是...

    Android的widget使用listview布局

    首先,为了创建一个包含ListView的Android Widget,我们需要在`res/xml`目录下创建一个新的XML布局文件,例如`widget_list_view.xml`。在这个文件中,定义一个ListView作为根元素,并设置相应的属性,如ID和样式: ...

    android ListView简单用法

    ListView listView = findViewById(R.id.list_view); ArrayAdapter&lt;String&gt; adapter = new ArrayAdapter(this, android.R.layout.simple_list_item_1, items); listView.setAdapter(adapter); ``` ### 3. 自定义...

    android-listView-SimpleAdapter-进阶1.rar

    在Android开发中,ListView是用于显示可滚动列表的视图组件,经常被用来展示大量数据。SimpleAdapter是Android提供的一种简单易用的适配器,它可以帮助开发者将数据集(如数组或列表)绑定到ListView上,使得数据...

    安卓开发-listview上拉刷新.zip.zip

    android:id="@+id/list_view" android:layout_width="match_parent" android:layout_height="match_parent" /&gt; &lt;/androidx.swiperefreshlayout.widget.SwipeRefreshLayout&gt; ``` 4. **监听刷新事件** 在...

    Android中ListView结合CheckBox获取选中项.rar

    在Android开发中,ListView是一种常用的组件,用于展示大量的列表数据。当需要在列表项中加入可选择的功能时,我们通常会结合使用CheckBox。本示例"Android中ListView结合CheckBox获取选中项.rar"旨在教授如何在...

    Android ListView pull up to refresh 改造.

    PullToRefreshListView listView = findViewById(R.id.list_view); listView.setMode(PullToRefreshBase.Mode.BOTH); listView.setOnRefreshListener(new PullToRefreshBase.OnRefreshListener&lt;ListView&gt;() { @...

    Android ListView 下拉刷新、上拉加载

    ListView listView = findViewById(R.id.list_view); listView.setOnScrollListener(new AbsListView.OnScrollListener() { private boolean isLoadingMore = false; @Override public void ...

    开源FireMonkey精品控件集-Modern ListView for Delphi Rio

    很好的Delphi Firemonkey控件,可用作Android、iOS、MacOS、Windows开发,比Delphi自带的listview更好用、功能更强大! ListView1.SetColorItemSelected(TAlphaColorRec.Orangered); ListView1.SetColorItemFill...

    android listView

    ListView listView = findViewById(R.id.list_view); ArrayAdapter&lt;String&gt; adapter = new ArrayAdapter(this, R.layout.list_item, R.id.text_view_title, items); listView.setAdapter(adapter); ``` 在这里,...

    listview-图片居中显示

    ListView listView = findViewById(R.id.list_view); ListAdapter adapter = new YourCustomAdapter(this, dataList); listView.setAdapter(adapter); ``` 4. **适配不同项目数量** 为了适应不同的项目数量,...

    android listview的使用方法

    ListView listView = findViewById(R.id.list_view); ArrayAdapter&lt;String&gt; adapter = new ArrayAdapter(this, android.R.layout.simple_list_item_1, items); listView.setAdapter(adapter); ``` 在这个例子中,`...

Global site tag (gtag.js) - Google Analytics