gpt4 book ai didi

android - 缺少 getListView

转载 作者:行者123 更新时间:2023-11-29 14:20:27 25 4
gpt4 key购买 nike

我创建了一个 ListView 来列出所有 Activity ,但是当我想调用该方法时,我找不到 getListView

我的activity_fragment.xml

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


<ListView
android:id="@+id/ListActivity"
android:layout_width="wrap_content"
android:layout_height="match_parent">

</ListView>


</RelativeLayout>

在我的 MainActivity.java 中似乎有一个错误

getListView

方法,我不知道为什么

enter image description here

最佳答案

当使用 ListActivity 而不是通常的 Activity 时,您可以使用 getListView()。在您的代码中,您弄错了,并使 ListView 具有 id“ View 的特殊标识符”ListActivity,因此要在您的代码中访问它,您只需

ListView lv = (ListView) findViewById(R.id.ListActivity);

关于android - 缺少 getListView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36265297/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com