gpt4 book ai didi

java - 相对布局 fill_parent 问题

转载 作者:数据小太阳 更新时间:2023-10-29 02:37:15 26 4
gpt4 key购买 nike

首先,我是 Android 开发的新手,所以这可能是一个简单的问题,但我真的无法让它工作。

我有以下布局。

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

<FrameLayout android:id="@+id/navigationBarFrameLayout"
android:layout_width="fill_parent"
android:layout_height="44dp">
<ImageView android:id="@+id/navigationBar"
android:src="@drawable/navigationbar"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:scaleType="centerCrop"/>
<TextView android:text="TextView"
android:layout_width="fill_parent"
android:id="@+id/navigationBarTitle"
android:layout_height="fill_parent"
android:gravity="center_vertical|center_horizontal"
android:textColor="#000"
android:textSize="24sp"
android:textStyle="bold"
android:shadowColor="#fff"
android:shadowDy="-1"
android:shadowDx="0"
android:shadowRadius="1"/>
</FrameLayout>

<android.support.v4.view.ViewPager
android:layout_width="fill_parent"
android:id="@+id/DayPager"
android:layout_height="82dp">
</android.support.v4.view.ViewPager>

<RelativeLayout android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/relativeLayout">
<HorizontalScrollView android:id="@+id/ScheduleScrollView"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:fadingEdge="none"
android:layout_above="@+id/tabBarFrameLayout"
android:scrollbars="none"
android:background="#00ff00">
<RelativeLayout android:id="@+id/ScheduleRelativeLayout"
android:layout_height="fill_parent"
android:layout_width="wrap_content">
<RelativeLayout android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/ScheduleTimelineRelativeLayout">
</RelativeLayout>
<RelativeLayout android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/ScheduleConcertsRelativeLayout"
android:layout_below="@+id/ScheduleTimelineRelativeLayout"
android:background="#ff0000"
android:layout_weight="1">
</RelativeLayout>
</RelativeLayout>
</HorizontalScrollView>

<FrameLayout android:id="@+id/tabBarFrameLayout"
android:layout_height="49dp"
android:layout_width="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:layout_alignParentRight="true">
<ImageView android:id="@+id/imageView1"
android:src="@drawable/tabbar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:scaleType="centerCrop"/>
</FrameLayout>
</RelativeLayout>

</LinearLayout>

您看到的是我有一个水平 ScrollView (ScheduleScrollView),它有两个相对布局。上面的包含时间线 (ScheduleTimelineRelativeLayout),而下面的 (ScheduleConcertsRelativeLayout) 将包含一些以编程方式创建的按钮。水平 ScrollView 与时间轴一样宽。我希望较低的相对布局填充它的父级,这意味着它应该与水平 ScrollView 一样宽,但这不起作用。

我搜索了这个论坛,试图找到我的问题的答案。有人建议使用 android:layout_width="match_parent" 但这样做时,我会收到以下错误:

Error: String types not allowed (at 'layout_width' with value 'match_parent')

其他人建议设置 android:layout_weight="1" 但这不会改变任何东西(而且该设置在我的自动完成中不可用,所以它似乎不存在)

下面的屏幕截图显示了我的问题。绿色部分是我的水平 ScrollView 的背景色。这不应该是可见的。相反,下面的红色部分应该到边缘。

enter image description here

更新:

enter image description here

更新:

在布局完成后以编程方式设置 ScheduleConcertsRelativeLayout 的宽度和高度是可行的。

RelativeLayout timeline = (RelativeLayout) findViewById(R.id.ScheduleTimelineRelativeLayout);
RelativeLayout.LayoutParams params = new RelativeLayout.LayoutParams(timeline.getWidth(), scheduleConcertsRelativeLayout.getHeight());
params.setMargins(0, timeline.getHeight(), 0, 0);
scheduleConcertsRelativeLayout.setLayoutParams(params);

最佳答案

我可能在这里遗漏了一些东西,但您是否尝试更改:

<HorizontalScrollView android:id="@+id/ScheduleScrollView" android:layout_width="wrap_content" ... \>

<HorizontalScrollView android:id="@+id/ScheduleScrollView" android:layout_width="fill_parent" ... \>

关于java - 相对布局 fill_parent 问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7674342/

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