gpt4 book ai didi

android - android中的布局对齐

转载 作者:行者123 更新时间:2023-11-29 01:44:37 24 4
gpt4 key购买 nike

我在我的 xml 文件中使用这段代码

<LinearLayout 
android:id="@+id/linearLayout1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:gravity="fill_vertical"
>

<Button
android:id="@+id/btn_signINlst"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="0.5"
android:background="@drawable/draw"
android:text="@string/sign_in" />

<TextView
android:id="@+id/Left"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="center"
android:layout_gravity="center_vertical"
android:textColor="#000000"
android:text="@string/do_not_have_ac"
/>

<Button
android:id="@+id/btn_registerlst"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="0.5"
android:background="@drawable/draw"

android:text="@string/register" />

</LinearLayout>

输出看起来不错

enter image description here

但是当我点击注册按钮然后自动改变对齐方式

changed alignment

请帮我解决这个问题

我所有的xml文件代码是

        <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/main_bg"
>

<RelativeLayout android:layout_width="fill_parent"
android:layout_height="40dip" android:layout_alignParentTop="true"
android:background="@drawable/tab_bar" android:id="@+id/rel_jobDesc">

<TextView android:layout_width="wrap_content"
android:id="@+id/txt_SEARCH_TITLE"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:text="@string/search_results"
android:textStyle="bold"
android:textSize="20dip"
android:textColor="#fff"></TextView>
</RelativeLayout>

<ListView
android:id="@+id/mainlist"
android:cacheColorHint="#00000000"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_above="@+id/adView"
android:layout_below="@+id/rel_jobDesc"
android:smoothScrollbar="true"
android:scrollingCache="false"

android:dividerHeight="1dp"
android:divider="#adb8c2"

>

</ListView>
<com.google.ads.AdView android:id="@+id/adView"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
ads:adUnitId="ca-app-pub-2584288851778590/4570818460"
ads:adSize="BANNER"
ads:loadAdOnCreate="true"
android:layout_above="@+id/AboveLinear"
ads:testDevices="TEST_EMULATOR, TEST_DEVICE_ID"/>



<TextView
android:id="@+id/AboveLinear"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_above="@+id/linearLayout1"
android:gravity="center_horizontal"
android:layout_centerHorizontal="true"
android:textColor="#000000"
android:textStyle="bold"
android:textSize="13sp"
android:text="@string/take_advantage" />

<LinearLayout
android:id="@+id/linearLayout1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:gravity="fill_vertical"
>

<Button
android:id="@+id/btn_signINlst"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="0.5"
android:background="@drawable/draw"
android:text="@string/sign_in" />

<TextView
android:id="@+id/Left"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="center"
android:layout_gravity="center_vertical"
android:textColor="#000000"
android:text="@string/do_not_have_ac"
/>

<Button
android:id="@+id/btn_registerlst"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="0.5"
android:background="@drawable/draw"

android:text="@string/register" />

</LinearLayout>

</RelativeLayout>

提前致谢

感谢任何帮助。

最佳答案

只需从 Buttons 中删除 android:layout_weight="0.5" 属性,如下所示...

<LinearLayout 
android:id="@+id/linearLayout1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:gravity="fill_vertical" >

<Button
android:id="@+id/btn_signINlst"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/draw"
android:text="@string/sign_in" />

<TextView
android:id="@+id/Left"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="center"
android:layout_gravity="center_vertical"
android:textColor="#000000"
android:text="@string/do_not_have_ac" />

<Button
android:id="@+id/btn_registerlst"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/draw"
android:text="@string/register" />

</LinearLayout>

关于android - android中的布局对齐,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22243862/

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