gpt4 book ai didi

android - 在 Android 中设置 ListViews 大小的可能方法?

转载 作者:太空狗 更新时间:2023-10-29 15:17:46 25 4
gpt4 key购买 nike

我创建了一个带有 listView 的 TableLayout。我通过在 dp 中设置它来定义 listView 的大小。我的问题是在屏幕较小的手机上上传应用程序时,listView 在屏幕上变大(长)。我不想使用 ScrollView 并在其中包含 listView。是否有任何其他方法来设置 ListView 的大小,该大小将相同并且不依赖于您使用的是什么手机?

ListView 的图片:http://tinypic.com/view.php?pic=2qwhoxd&s=6

<?xml version="1.0" encoding="utf-8"?>

<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@drawable/bakgrunden"
android:orientation="vertical"
android:gravity="center|top"
android:stretchColumns="1"
android:weightSum="1.0" >

<TableRow>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
</TableRow>

<TableRow
android:paddingLeft="22dp"
android:paddingRight="25dp"
android:paddingTop="15dp" >

<ListView
android:id="@+id/latest_list"
style="@style/CustomListView"
android:layout_width="wrap_content"
android:layout_height="390dp" <------- THE PROBLEM! The list gets to long for a
android:gravity="left"/> small-screen mobile.
</TableRow>

</TableLayout>

最佳答案

只需为较小的屏幕创建不同的布局,并让操作系统确定要加载的布局。 Android 开发者网站有这个极好的建议:Supporting Different Screen Sizes

您可以尝试使用 layout_weight 属性或通过确定每个屏幕的大小 (Get screen dimensions in pixels) 在运行时调整高度,然后计算适当的高度...但老实说,有几个不同的布局是最简单的、面向 future 的方法。

关于android - 在 Android 中设置 ListViews 大小的可能方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11073947/

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