如何使我的布局能够向下滚动?使我、布局

2023-09-12 23:04:14 作者:蔓延旅行

我无法向下滚动屏幕来查看Replyby部分中的数据。我怎样才能让我的布局滚动?

I can not scroll down the screen to view the data in the Replyby section. How can I make my layout scrollable?

推荐答案

只是包装全部在滚动型

<?xml version="1.0" encoding="utf-8"?>
<ScrollView
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent">
    <!-- Here you put the rest of your current view-->
</ScrollView>

正如David Hedlund的说,滚动型可以只包含一个项目......所以,如果你有这样的事情:

As David Hedlund said, ScrollView can contain just one item... so if you had something like this:

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

您必须将其更改为:

<?xml version="1.0" encoding="utf-8"?>
<ScrollView
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent">
    <LinearLayout
      android:layout_width="fill_parent"
      android:layout_height="fill_parent">
        <!-- bla bla bla-->
    </LinearLayout>
</ScrollView>