如何设置与Android的包裹内容的最大高度?包裹、如何设置、高度、内容

2023-09-07 23:10:18 作者:擦干眼泪我还是王

在Android的,你怎么能打造了有一个最大高度滚动视图,并包裹内容,基本上它包装内容垂直,但有一个最大高度?

In android, how can you create a scroll view that's got a max height, and wrap contents, basically it wraps the content vertically, but has a maximum height?

我试过

<ScrollView 
     android:id="@+id/scrollView1"
     android:layout_width="match_parent"
     android:layout_height="wrap_content"
         android:maxHeight="200dp"
     android:layout_alignParentBottom="true" >

    <LinearLayout
        android:id="@+id/maincontainer"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical">

    </LinearLayout>
</ScrollView>

但是,这是不工作?

But this isn't working?

推荐答案

我已经延长滚动型和添加code来实现此功能:

I've extended ScrollView and added code to implement this feature:

https://gist.github.com/JMPergar/439aaa3249fa184c7c0c

我希望是有用的。