gpt4 book ai didi

java - 如何使用RelativeLayout使Textview在Listview中居中?

转载 作者:行者123 更新时间:2023-12-01 05:02:10 24 4
gpt4 key购买 nike

ArrayAdapter<String> arrayAdapter = new ArrayAdapter<String>(this,R.layout.activity_haltestellen, R.id.tvHaltestellen, HaltestellenListe);
lvH.setAdapter(arrayAdapter);

这就是设置内容和 .xml 的方式:

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

<ListView
android:id="@+id/lvHaltestellen"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true" >
</ListView>

<TextView
android:id="@+id/tvHaltestellen"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"

/>

我从数据库获取 StringArray。那么如何才能将电视置于 ListView 的中心呢?真是糟糕的事情

最佳答案

尝试添加这个:android:layout_centerInParent="true"

<TextView
android:id="@+id/tvHaltestellen"
android:layout_centerInParent="true"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />

关于java - 如何使用RelativeLayout使Textview在Listview中居中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13241876/

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