gpt4 book ai didi

android - 版本 2.3.3 和 4+ 之间的 android 布局设计差异

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

在创建一个简单的 xml 设计时,我在我的项目中遇到了一个奇怪的问题,如下所示:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:background="#FF0000"
android:layout_marginLeft="30dp"
android:layout_width="fill_parent"
android:layout_height="fill_parent">

<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="New Button"
android:id="@+id/button"
android:layout_gravity="left|center_vertical"/>

现在看看区别,这是 4.2.2 中的 View :

2.3.3 version

2.3.3 中的这个:

enter image description here

如果有人能帮助我,我将不胜感激。谢谢

最佳答案

它有效,如果你把它改成这样:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_gravity="center"
android:layout_marginLeft="30dp"
android:background="#FF0000"
android:orientation="vertical" >

<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:text="New Button" />

</LinearLayout>

(我想我知道为什么它会这样,让我检查一下。稍后我会添加解释)

关于android - 版本 2.3.3 和 4+ 之间的 android 布局设计差异,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16149309/

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