ListView中没有显示垂直滚动条

时间:2015-06-22 13:27:01

标签: android android-listview

以下是我正在使用的布局。无线电组的单选按钮是动态添加的。一切都工作得很好,组中有很少的单选按钮,有更多的单选按钮,一旦方向改变,期望看到垂直滚动并且不显示。

是否还有其他属性需要设置为ListView?

感谢指针。

如果它的价值,它是这个问题的延伸RadioGroup and TextView in a RelativeLayout - RadioGroup is hiding TextView

<?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"
android:orientation="horizontal" >

<ListView
    android:id="@android:id/list"
    android:layout_width="match_parent"
    android:layout_height=“wrap_content” >
</ListView>

<TextView
    android:id="@+id/sample"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_gravity="center"
    android:layout_marginBottom="20dp"
    android:layout_marginTop="20dp"
    android:background="@color/black"
    android:gravity="center"
    android:text="@string/sample"
    android:textColor="@color/white" />

<RadioGroup
    android:id="@+id/radio_group"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/white"
    android:layout_below="@+id/sample”
    android:orientation="vertical" >
</RadioGroup>

</RelativeLayout>

2 个答案:

答案 0 :(得分:0)

您可以尝试用这样的<RadioGroup>围绕<ScrollView>,它应该向下/向上滚动,因为RadioGroup本身默认不滚动:

<?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"
    android:orientation="horizontal" >

    <ListView
         android:id="@android:id/list"
         android:layout_width="match_parent"
         android:layout_height=“wrap_content” >
    </ListView>

    <TextView
         android:id="@+id/sample"
         android:layout_width="match_parent"
         android:layout_height="match_parent"
         android:layout_gravity="center"
         android:layout_marginBottom="20dp"
         android:layout_marginTop="20dp"
         android:background="@color/black"
         android:gravity="center"
         android:text="@string/sample"
         android:textColor="@color/white" />

    <ScrollView 
         android:id="@+id/scrollview_radioGroup"
         android:layout_width="match_parent"
         android:layout_height="wrap_content"
         android:fillViewport="true"
         android:layout_below="@id/sample">

        <RadioGroup
            android:id="@+id/radio_group"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:background="@color/white"
            android:layout_below="@+id/sample”
            android:orientation="vertical" >
        </RadioGroup>
    </ScrollView>

</RelativeLayout>

答案 1 :(得分:0)

从你在其他帖子中写的内容和你的#34;滚动&#34;问题让我建议你一个布局:

&#34;这就是我想要完成的。一个textView,下面是一个radioButton组,其中以编程方式添加了radioButtons。能够只使用radioButtons而不是textView显示radioButton组。 radioButton组占用了布局中的所有空间,textView是不可见的。&#34;

<?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" >

<TextView
     android:id="@+id/sample"
     android:layout_width="match_parent"
     android:layout_height="wrap_content"
     android:layout_gravity="center"
     android:layout_marginBottom="20dp"
     android:layout_marginTop="20dp"
     android:background="@color/black"
     android:gravity="center"
     android:text="@string/sample"
     android:textColor="@color/white" />

    <ScrollView 
     android:id="@+id/scrollview_radioGroup"
     android:layout_width="match_parent"
     android:layout_height="match_parent"
     android:layout_below="@id/sample">

        <RadioGroup
        android:id="@+id/radio_group"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="@color/white"
        android:orientation="vertical" >
        </RadioGroup>
    </ScrollView>

</RelativeLayout>

如果您的布局中只包含这些元素,您甚至应该使用LinearLayout而不是亲戚。