ListView 不显示默认视图
Posted
技术标签:
【中文标题】ListView 不显示默认视图【英文标题】:ListView not showing default view 【发布时间】:2021-03-12 02:52:12 【问题描述】:我在我的 android 应用程序中包含了一个列表视图。但是,当我添加它并给它一个 id (listView) 时,应用程序上的列表视图是空白的,这与我在互联网上看到的不同。
我的观点: My View
普通视图: Normal View
Xml 文件:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_
android:layout_>
<ListView
android:id="@+id/listView"
android:layout_
android:layout_
android:visibility="visible" />
</RelativeLayout>
Java 文件:
package com.example.applicationv1;
import android.os.AsyncTask;
import android.os.Bundle;
import android.view.View;
import android.widget.ListView;
import androidx.appcompat.app.AppCompatActivity;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.Statement;
import java.util.ArrayList;
public class Logs extends AppCompatActivity
ListView listView;
@Override
protected void onCreate(final Bundle savedInstanceState)
super.onCreate(savedInstanceState);
setContentView(R.layout.logs);
listView = (ListView) findViewById(R.id.listView);
为什么我不能在上面的普通视图中看到其他人喜欢的视图?
【问题讨论】:
【参考方案1】:你已经有正常的View
,有一个列表,它是空的。您必须制作一些 Adapter 来生成列表项。 Here 和 here 你有一些很好的例子,如果你使用网络搜索也有很多
【讨论】:
不,即使不使用适配器,列表视图也应该填充正常视图,如图所示。这在其他 youtube 视频中有所展示。他们所做的只是添加一个列表视图,在他们给它一个 id 之后,列表视图从空白变为普通视图图片,而无需添加适配器。 所以在向你撒谎,android中的任何View
中都没有内容,你必须设置它。对于TextView
只是setText
方法,对于ListView
你有适配器。没有适配器,列表上不会有单个项目,永远不会以上是关于ListView 不显示默认视图的主要内容,如果未能解决你的问题,请参考以下文章
在 ListView 中默认选择一行并突出显示所选行 Android