Tab中的Android ListView只显示一行

时间:2017-08-16 15:11:14

标签: android listview


我在选项卡中的ListView大小有问题。
我认为这很简单,但我无法单独找到解决方案。

除了使用ListView更改的TextView之外,该活动与默认活动相同。
我使用带有三个项目的虚拟列表的ArrayAdapter(" P1"," P2"," P3")。
所有尺寸都设置为" match_parent"或" wrap_content"

我得到的是:我只看到" P1"而不是整个列表,一个小滚动条,允许在值之间滚动。
我希望看到的是整个清单。

screenshot of my app

有人能帮我吗?

主要活动布局

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout 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:id="@+id/main_content"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:context="it.danapps.mycommunity.ChooseTags">

<android.support.design.widget.AppBarLayout
    android:id="@+id/appbar"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:paddingTop="@dimen/appbar_padding_top"
    android:theme="@style/AppTheme.AppBarOverlay">

    <android.support.v7.widget.Toolbar
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        android:background="?attr/colorPrimary"
        app:layout_scrollFlags="scroll|enterAlways"
        app:popupTheme="@style/AppTheme.PopupOverlay">

        <Spinner
            android:id="@+id/spinner"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            app:popupTheme="@style/AppTheme.PopupOverlay" />
    </android.support.v7.widget.Toolbar>

</android.support.design.widget.AppBarLayout>

<android.support.v4.widget.NestedScrollView
    android:id="@+id/container_choose_tags"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    app:layout_behavior="@string/appbar_scrolling_view_behavior" />



片段

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="it.danapps.mycommunity.ChooseTags$PlaceholderFragment">


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



修改
1.强制高度为300dp我看清单。但是我如何自动对Android进行调整以适应屏幕?

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="it.danapps.mycommunity.ChooseTags$PlaceholderFragment">


<ListView
    android:id="@+id/chooseTagListView"
    android:layout_width="match_parent"
    android:layout_height="300dp"
     />



ListView with 300dp height

1 个答案:

答案 0 :(得分:0)

如果TextViews被设置为“match_parent”,那将是您的问题。确保TextView使用设置的高度或使用“wrap_content”。否则,您的TextView将尝试填充其放置的滚动视图的高度,这就是您只看到第一个的原因。