gpt4 book ai didi

android - 将 Android 布局从相对更改为线性

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:16:39 25 4
gpt4 key购买 nike

我刚开始创建 android 应用程序,但我在更改 layout 时遇到问题,每次我创建新的 android 项目时,它都会给我 RelativeLayout 而不是 LinearLayout,(好吧,基本上我是按照书上的说明操作的,但它没有教我如何更改它)我假设必须有一个默认设置,以便我可以更改 RelativelayoutLinearLayout

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent" >

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:text="@string/hello_world"
tools:context=".MainActivity" />

</RelativeLayout>

最佳答案

替换以下标签:

<RelativeLayout
... >

</RelativeLayout>

那些人:

<LinearLayout
... >

</LinearLayout>

此外,您应该从 TextView 属性中删除以下内容:

android:layout_centerHorizontal="true"
android:layout_centerVertical="true"

因为他们申请的是相对布局而不是线性布局。

关于android - 将 Android 布局从相对更改为线性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11859073/

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