布局无法在android中的scrollview之外单击

时间:2018-10-24 07:02:04

标签: android layout scrollview clickable

我有一个ScrollView,我希望可以点击并滚动。 相对布局是我的根本布局。 这是我的代码:

<RelativeLayout
    android:clickable="true"
    android:clipToPadding="false"
    android:id="@+id/cardOpt2"
    android:layout_height="wrap_content"
    android:layout_width="wrap_content">

    <ScrollView
        android:clickable="false"
        android:fillViewport="true"
        android:layout_centerInParent="true"
        android:layout_height="wrap_content"
        android:layout_width="wrap_content">

        <TextView
            android:id="@+id/btnOpt2"
            android:layout_height="wrap_content"
            android:layout_width="wrap_content" />
    </ScrollView>
</RelativeLayout>

1 个答案:

答案 0 :(得分:0)

您应该将scrollView用作根布局并设置:

@GetMapping("/folders")
public Map<String,List<Folder>> getAllFolders() {
    Map<String,List<Folder>> map = new HashMap<>();
    map.put("folders",Service.findAllFolders(1,2));
    return map;
}

执行此操作:

android:layout_height="match_parent"
android:layout_height="wrap_content"