android listview不显示项目

zf9nrax1  于 2021-07-03  发布在  Java
关注(0)|答案(1)|浏览(407)

我不知道为什么结果没有出现在我的listview中。我甚至有调试日志告诉我adapter和listview都有2个项目,但它仍然没有显示任何内容。这是密码
selectplayeractivity.java

PlayerDB db = new PlayerDB(this);
ArrayList<Player> data = db.getPlayers();
ArrayList<HashMap<String, String>> hashData = new ArrayList<HashMap<String, String>>();
for (Player player : data){
    hashData.add(Player.ConvertPlayerToHashMap(player));
}

// create the resource, from, and to variables
int resource = R.layout.playerlist_row;
String[] from = {"name"};
int[] to = {R.id.playerName};

// create and set the adapter
SimpleAdapter adapter =
        new SimpleAdapter(this, hashData, resource, from, to);
listPlayers.setAdapter(adapter);
adapter.notifyDataSetChanged();

// Both of these show the right amount of data, showing up as 2
Log.d("SelectPlayerActivity", "Adapter counted: " + adapter.getCount());
Log.d("SelectPlayerActivity", "ListView counted: " + listPlayers.getCount());

listPlayers.setOnItemClickListener(new AdapterView.OnItemClickListener() {
    @Override
    public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
        HashMap<String, String> hashPlayer = (HashMap<String, String>)listPlayers.getAdapter().getItem(position);
        if (hashPlayer.getClass() != HashMap.class) {
            Log.e("SelectPlayerActivity", "Error! hashPlayer is not a HashMap!");
        }
        else {
            selectedPlayer = Player.ConvertHashMapToPlayer(hashPlayer);
            finish();
        }
    }
});

我还包括布局文件的情况下,它与这些问题
活动\u选择\u player.xml

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout 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_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".SelectPlayerActivity">

    <TextView
        android:id="@+id/lblName"
        android:layout_width="79dp"
        android:layout_height="43dp"
        android:layout_marginStart="12dp"
        android:layout_marginLeft="12dp"
        android:layout_marginTop="12dp"
        android:gravity="center"
        android:text="Player"
        android:textSize="18sp"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

    <Button
        android:id="@+id/btnApplySelection"
        android:layout_width="381dp"
        android:layout_height="103dp"
        android:text="Apply Selection &amp; Return to Menu"
        android:textSize="18sp"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent" />

    <EditText
        android:id="@+id/txtName"
        android:layout_width="292dp"
        android:layout_height="45dp"
        android:layout_marginTop="12dp"
        android:ems="10"
        android:hint="Use the list below to select a player"
        android:inputType="text"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintHorizontal_bias="0.333"
        app:layout_constraintStart_toEndOf="@+id/lblName"
        app:layout_constraintTop_toTopOf="parent" />

    <ListView
        android:id="@+id/listPlayers"
        android:layout_width="409dp"
        android:layout_height="568dp"
        android:layout_marginBottom="1dp"
        app:layout_constraintBottom_toTopOf="@+id/btnApplySelection"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintVertical_bias="1.0" />
</androidx.constraintlayout.widget.ConstraintLayout>

playerlist\ u row.xml

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

    <TextView
        android:id="@+id/playerName"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textSize="20sp"/>

</LinearLayout>

edit1我包含了下面hashmap变量中的数据,与从日志中复制的数据完全相同

hashData = {ArrayList@11212}  size = 2
 0 = {HashMap@11269}  size = 5
  "wins" -> "0"
  "ties" -> "0"
  "name" -> "Marky"
  "id" -> "1"
  "losses" -> "0"
 1 = {HashMap@11270}  size = 5
  "wins" -> "0"
  "ties" -> "0"
  "name" -> "asdasd"
  "id" -> "2"
  "losses" -> "0"
7rtdyuoh

7rtdyuoh1#

这个 ListView 但是既然你让它有一个固定的高度 568dp 它的两行呈现为“在”另一行之后 View s、 例如,应用程序栏(在我的示例应用程序中,第二行部分可见,第一行被tablayout覆盖)
我改变了约束条件 ListView 如下所示 EditText ```

![](https://i.stack.imgur.com/nH0DE.png)

相关问题