gpt4 book ai didi

android - 相对布局 : how to delete border around second layout?

转载 作者:行者123 更新时间:2023-11-30 01:32:28 24 4
gpt4 key购买 nike

我有一个 xml 文件,其中包含两个 RelativeLayout。问题是第二个 Relativelayout 没有达到显示限制。它看起来像布局周围的边框。

如何在显示器的边框上显示第二层?

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:background="@color/colorAccent"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context="newservice"
tools:showIn="@layout/activity_newservice">


<RelativeLayout
android:id="@+id/test"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/colorPrimaryDark"
android:layout_alignBottom="@+id/viewmap"
android:layout_centerHorizontal="true">
</RelativeLayout>

</RelativeLayout>

最佳答案

在顶部布局中删除这一行:

android:paddingTop="@dimen/activity_vertical_margin"

你在顶部放置了一个内边距,所以第二个布局不会像你想要的那样填充第一个布局。

问候!

关于android - 相对布局 : how to delete border around second layout?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35572978/

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