gpt4 book ai didi

android - Android 中的线性和相对布局

转载 作者:搜寻专家 更新时间:2023-11-01 08:58:07 24 4
gpt4 key购买 nike

我想在我的 Activity 结束时显示一个按钮栏。我创建了一个名为:batton_bar_ref.xml 的布局:

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

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:background="@drawable/shape_blue_light_horizental_gradiant_notrounded"
android:gravity="center"
android:orientation="vertical"
android:paddingBottom="10dip"
android:paddingTop="10dip" >

<Button
android:id="@+id/pay_button"
android:layout_width="100dip"
android:layout_height="50dip"
android:text="@string/pay"
android:textSize="16sp"
android:textStyle="bold" >
</Button>
</LinearLayout>

</RelativeLayout>

并添加 <include layout="@layout/button_bar_ref"/>到另一个布局。

它显示警告信息:

This LinearLayout layout or its RelativeLayout parent is useless; transfer the background attribute to the other view.

你能告诉我如何解决吗?

附录:

  1. 按钮栏应该在屏幕的末尾。
  2. 请注意线性布局有背景。

最佳答案

这只是通过删除不需要的标签来优化布局的建议。在您的情况下,因为除了 LinearLayout 之外,您在 RelativeLayout 下没有任何子项,所以这个特定布局的设计并不正确。

首先你可以忽略这个警告,一旦你成功地设计了你计划包含这个布局文件的布局文件,你就会意识到这个文件中声明的布局之一可以被删除。

关于android - Android 中的线性和相对布局,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17379490/

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