gpt4 book ai didi

Android缩放(布局)问题

转载 作者:太空狗 更新时间:2023-10-29 15:01:33 26 4
gpt4 key购买 nike

正如您从标题中所理解的那样,我在缩放我目前正在构建的内容时遇到了一些问题。在我的 GalaxyS5 上,一切都运行完美,但是当我尝试在屏幕更大的三星平板电脑上运行它时,我遇到了一些问题。

因为我不能发布图片,这里是一个链接,提供了我的问题的直观描述: https://www.sendspace.com/file/83j0tp

更新:因为我有10个声望帖子,我可以添加图片。

三星 S5

状态 1

enter image description here

状态 2

enter image description here

SamsungTab(平板电脑)

状态 1

enter image description here

状态 2

enter image description here

这是我的 XML 代码:

希望大家帮帮我。

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


<LinearLayout
android:layout_alignParentBottom="true"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/linearLayout5"
android:layout_alignTop="@+id/linearLayout6">

<ImageView
android:id="@+id/loginImage"
android:layout_width="fill_parent"
android:layout_height="match_parent" />
<ImageView
android:id="@+id/loginImage2"
android:layout_width="fill_parent"
android:layout_height="match_parent" />

<TextView
android:layout_width="372dp"
android:layout_height="match_parent"
android:layout_alignLeft="@+id/loginImage"
android:layout_alignTop="@+id/loginImage"
android:layout_alignRight="@+id/loginImage"
android:layout_alignBottom="@+id/loginImage"
android:gravity="center|right"
android:id="@+id/textLoginmail" />
</LinearLayout>

<LinearLayout
android:layout_alignParentBottom="true"
android:layout_width="fill_parent"
android:layout_height="49.5dp"
android:layout_marginTop="45dp"
android:id="@+id/linearLayout6"
android:weightSum="1"
android:layout_alignParentEnd="false">

<TextView
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:text="Registreer"
android:gravity="center|right"
android:textColor="#FFFFFF"
android:id="@+id/textRegistreer"
android:layout_weight="0.72" />

<TextView
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:id="@+id/textLogin"
android:layout_weight="0.44"
android:text="Login"
android:textColor="#FFFFFF"
android:gravity="center"/>

<Button
android:layout_width="81dp"
android:layout_height="wrap_content"
android:background="@android:color/transparent"
android:id="@+id/closeButton" />

</LinearLayout>

<FrameLayout
android:layout_above="@id/linearLayout5"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="25dp"
android:id="@+id/framelayout_facebook">

<ImageView
android:id="@+id/facebookImage"
android:layout_width="match_parent"
android:layout_height="match_parent" />

<com.facebook.widget.LoginButton
android:id="@+id/fb_login_button"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:drawableLeft="@drawable/ic_action_labels"
android:drawableRight="@drawable/ic_action_next_item"
android:layout_marginLeft="20dp"
android:layout_marginRight="20dp"/>
<LinearLayout
android:clickable="true"
android:focusable="true"
android:focusableInTouchMode="true"
android:orientation="horizontal"
android:id="@+id/overlay_for_terms"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:weightSum="1">

<TextView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:gravity="center"
android:textColor="#FFFFFF"
android:id="@+id/textFacebook"
android:layout_weight="0.90" />
</LinearLayout>
</FrameLayout>

最佳答案

问题解决了。我虽然最好告诉程序它应该在哪个屏幕上使用哪个宽度。

多亏了 Gaetan 的提示,它的效果非常好。 Using different layout style on different screens (Android)

关于Android缩放(布局)问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26141946/

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