gpt4 book ai didi

Android 布局在使用相对和线性布局从纵向切换到横向时产生问题

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

我尝试为带有 Logo 的登录页面创建 UI,两个编辑文本和登录按钮,在手机纵向模式下一切都很好,但是当我在横向和平板电脑上检查它时,问题就开始了。

我有两个解决方案

1.

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/relativelayoutparent"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#fed2db"
android:orientation="vertical"
>
<RelativeLayout
android:id="@+id/linearlayout_parents"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">

<RelativeLayout
android:id="@+id/relativelayoutbasic"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="@dimen/margin20"
android:layout_marginRight="@dimen/margin20"
android:layout_centerInParent="true"
>
<EditText
android:id="@+id/userName"
android:inputType="text"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="demo@rohitpro.com"
android:hint="UserName"
android:drawableStart="@mipmap/ic_launcher"
android:drawablePadding="10dp"
android:background="@null"
android:layout_marginTop="10dp" />
<View
android:id="@+id/view"
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="#f7f7f7"
android:layout_below="@id/userName"
android:layout_marginTop="10dp" />
<EditText
android:id="@+id/password"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/view"
android:inputType="textPassword"
android:hint="Password"
android:text="Password@123"
android:drawablePadding="10dp"
android:background="@null"
android:drawableStart="@mipmap/ic_launcher"
android:layout_marginTop="10dp" />
<Button
android:id="@+id/buttonLogin"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/password"
android:background="#f7f7f7"
android:text="Login"
android:textColor="@android:color/black"
android:textAllCaps="false"
android:textStyle="bold"
android:textSize="17sp"
android:layout_marginTop="10dp" />
<Button
android:id="@+id/buttonForgotPassword"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/buttonLogin"
android:layout_marginTop="10dp"
android:text="Forgot Password ?"
android:textColor="@android:color/white"
android:textAllCaps="false"
android:background="@null" />
</RelativeLayout>

<ImageView
android:id="@+id/imageview"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@mipmap/ic_launcher"
android:layout_marginTop="@dimen/margin20"
android:layout_above="@id/relativelayoutbasic"
android:layout_centerHorizontal="true"/>
</RelativeLayout>
</RelativeLayout>

这在纵向模式下效果很好,但当我们在横向模式下旋转时,它会减小图像尺寸。

以纵向显示下面的示例 enter image description here

在横向显示下面的示例 enter image description here

所以我尝试了下一个解决方案

2.

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/relativelayoutparent"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#3996db"
android:orientation="vertical"
>

<ScrollView
android:id="@+id/linearlayout_parentscroll"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:id="@+id/linearlayout_parents"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">

<ImageView
android:id="@+id/imageview"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@mipmap/ic_launcher"
android:layout_marginTop="@dimen/margin20"
android:layout_gravity="center_horizontal"/>

<RelativeLayout
android:id="@+id/relativelayoutbasic"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="@dimen/margin20"
android:layout_marginRight="@dimen/margin20"

>
<EditText
android:id="@+id/userName"
android:inputType="text"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="demo@rohitpro.com"
android:hint="UserName"
android:drawableStart="@mipmap/ic_launcher"
android:drawablePadding="10dp"
android:background="@null"
android:layout_marginTop="10dp" />
<View
android:id="@+id/view"
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="#f7f7f7"
android:layout_below="@id/userName"
android:layout_marginTop="10dp" />
<EditText
android:id="@+id/password"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/view"
android:inputType="textPassword"
android:hint="Password"
android:text="Password@123"
android:drawablePadding="10dp"
android:background="@null"
android:drawableStart="@mipmap/ic_launcher"
android:layout_marginTop="10dp" />
<Button
android:id="@+id/buttonLogin"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/password"
android:background="#f7f7f7"
android:text="Login"
android:textColor="@android:color/black"
android:textAllCaps="false"
android:textStyle="bold"
android:textSize="17sp"
android:layout_marginTop="10dp" />
<Button
android:id="@+id/buttonForgotPassword"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/buttonLogin"
android:layout_marginTop="10dp"
android:text="Forgot Password ?"
android:textColor="@android:color/white"
android:textAllCaps="false"
android:background="@null" />
</RelativeLayout>
</LinearLayout>
</ScrollView>

</RelativeLayout>

A. 在此解决方案中,我们不能使用属性 android:layout_centerInParent="true"因为它是相对布局,所以我们无法像在解决方案一中那样使登录文本字段居中,这个解决方案在较小的屏幕上看起来不错并且也有滚动但在大屏幕上不起作用,因为它不会居中。

B.我们无法在 ScrollView 中使用相对布局,因为它会产生许多其他并发症。

我花了很多时间,使用了很多堆栈溢出引用和其他引用,但没有任何效果。

请提出一些解决方法。提前致谢...

最佳答案

这里的问题是您正在使用宽度/高度为 “wrap_content”@mipmap/ic_launcher 图像。
所以 ImageView 大小将基于 ic_launcher 图像大小
并且 ic_launcher 横向图像尺寸小于纵向图像
=> 你的横向 ImageView 比纵向小

因此,简单地为您的ImageView设置宽度,那么您的图像大小在纵向和横向上看起来都是一样的

<ImageView
android:id="@+id/imageview"
android:layout_width="100dp" // or whatever you want
android:layout_height="100dp"
android:src="@mipmap/ic_launcher"
android:layout_marginTop="@dimen/margin20"
android:layout_gravity="center_horizontal"/>

关于Android 布局在使用相对和线性布局从纵向切换到横向时产生问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39829170/

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