gpt4 book ai didi

托管 viewPager 的 Android FrameLayout 占用了所有可用空间

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:24:31 25 4
gpt4 key购买 nike

enter image description here

大家好,我正在尝试创建一个包含不同图像和文本(均托管在 Fragment 中)并由 FrameLayout 中的 (Fragment)ViewPager 管理的“教程”(例如 AirBnb 应用中的这个)。作为上面的示例,我还想在屏幕底部显示两个按钮,我的问题是包含 ViewPager 的 FrameLayout 占用了所有可用空间,因此隐藏了包含按钮的 LinearLayout。

这是一个奇怪的情况,因为布局非常简单,我尝试了不同的方法,但没有解决我的问题。我检查了只有布局的根元素处于 fill_parent 模式,并且还检查了所有其他布局避免增长到超过显示信息所需的空间。

以下是一些 fragment , Activity 的 xml 布局以及 FragmentViewPager 显示的每个子 fragment :

activity-tutorial.xml(我试过用 LinearLayout 作为根元素而不是 RelativeLayout,但没有任何变化)

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">

<FrameLayout
android:id="@+id/pager_framelayout"
android:layout_width="fill_parent"
android:layout_height="wrap_content">

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

<com.viewpagerindicator.CirclePageIndicator
android:id="@+id/circle_indicator"
android:padding="@dimen/general_padding"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:background="@null"
android:layout_gravity="bottom" />
</FrameLayout>

<LinearLayout
android:id="@+id/buttons_bottom_layout"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:orientation="horizontal"
android:weightSum="100"
android:layout_below="@id/pager_framelayout">

<Button
android:id="@+id/sign_up_btn"
android:padding="@dimen/general_padding"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:layout_weight="50"
android:text="Sign UP" />

<Button
android:id="@+id/login_btn"
android:padding="@dimen/general_padding"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:layout_weight="50"
android:text="Login" />
</LinearLayout>
</RelativeLayout>

fragment_tutorial_screen.xml

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical" >

<ImageView
android:id="@+id/tutorial_screen_image"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="centerCrop"/>

<TextView
android:id="@+id/tutorial_screen_title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="@dimen/general_padding"
android:background="@null"
android:layout_gravity="bottom"/>
</FrameLayout>

以及用于实例化 fragment 并使用信息填充 View 的 java 代码:

TutorialScreenFragment.java

{ //...
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
// Identify and set fields!
ViewGroup rootView = (ViewGroup) inflater.inflate(R.layout.subfragment_tutorial_screen, container, false);
image = (ImageView) rootView.findViewById(R.id.tutorial_screen_image);
title = (TextView) rootView.findViewById(R.id.tutorial_screen_title);
return rootView;
}

@Override
public void onActivityCreated(Bundle savedInstanceState) {
super.onActivityCreated(savedInstanceState);
// Populate fields with info!
if (TutorialActivity.class.isInstance(getActivity())) {
title.setText(titleResId);
// Call Glide to load image
Glide.with(this)
.load(imageResId)
.centerCrop()
.placeholder(R.drawable.image_placeholder)
.into(image);
}
}
/...
}

一切正常,显示当前页面的点也很好,但按钮根本不显示。这是我的应用结果:

enter image description here

谢谢。

最佳答案

您需要更改布局的行为。首先,将您的 LinearLayout 对齐到父级的底部。然后将您的 FrameLayout 放在 LinearLayout 之上。像这样:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">

<FrameLayout
android:id="@+id/pager_framelayout"
android:layout_width="fill_parent"
android:layout_above="@+id/buttons_bottom_layout"
android:layout_height="wrap_content">

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

<com.viewpagerindicator.CirclePageIndicator
android:id="@+id/circle_indicator"
android:padding="@dimen/general_padding"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:background="@null"
android:layout_gravity="bottom" />
</FrameLayout>

<LinearLayout
android:id="@+id/buttons_bottom_layout"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:orientation="horizontal"
android:weightSum="100"
android:layout_alignParentBottom="true">

<Button
android:id="@+id/sign_up_btn"
android:padding="@dimen/general_padding"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:layout_weight="50"
android:text="Sign UP" />

<Button
android:id="@+id/login_btn"
android:padding="@dimen/general_padding"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:layout_weight="50"
android:text="Login" />
</LinearLayout>
</RelativeLayout>

关于托管 viewPager 的 Android FrameLayout 占用了所有可用空间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26830016/

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