gpt4 book ai didi

Android ViewPager 维度

转载 作者:塔克拉玛干 更新时间:2023-11-02 19:23:57 30 4
gpt4 key购买 nike

ViewPager 是否必须是 Activity 布局中唯一存在的对象?我正在尝试实现这样的东西:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/reader_layout"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >

<android.support.v4.view.ViewPager
android:id="@+id/page_viewer"
android:layout_width="match_parent"
android:layout_height="wrap_content" />

<Gallery
android:id="@+id/miniatures_gallery"
android:layout_width="match_parent"
android:layout_height="wrap_content" /></LinearLayout>

我应该在什么地方有一个大的寻呼机在顶部滚动(我有)和一个较小的画廊在它下面滚动。这只向我显示寻呼机而不是画廊。有什么建议吗?

最佳答案

ViewPager 不支持 wrap_content 因为它(通常)永远不会同时加载它的所有子项,因此无法获得合适的大小(选项是有一个寻呼机每次切换页面时都会更改大小)。

不过,您可以设置精确的尺寸(例如 150dp),match_parent 也能正常工作。
您还可以通过更改其 LayoutParams 中的 height 属性从您的代码中动态修改尺寸。

关于Android ViewPager 维度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8532307/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com