gpt4 book ai didi

android - 不同屏幕显示不一样的界面

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

我是 android 编程的新手,我的问题是我用一些 LienarLayouts 创建了一个简单的计算器界面,结果在设计显示和我的物理手机上不一样。

The result i get on the design

The result i get on my phone (Galaxy S7)

我找不到任何解决方案。对于运算符(operator),我将一些图像放在不同的可绘制文件夹(hdpi、xhdpi 和 xxhdpi)中。

我会把我的 xml 文件放在这里。

    <?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/background_light">

<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">

<LinearLayout
android:layout_width="match_parent"
android:layout_height="165dp"
android:background="@color/clrBlue"
android:orientation="vertical">

<TextView
android:id="@+id/textView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="right"
android:gravity="right"
android:paddingLeft="10dp"
android:paddingRight="10dp"
android:paddingTop="50dp"
android:text="567"
android:textColor="@android:color/background_light"
android:textSize="45sp" />

</LinearLayout>

<LinearLayout
android:layout_width="match_parent"
android:layout_height="87dp"
android:orientation="horizontal"
android:weightSum="4">

<Button
android:id="@+id/button"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="@android:color/background_light"
android:text="7"
android:textColor="@android:color/black"
android:textSize="30sp" />

<Button
android:id="@+id/button2"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="@android:color/background_light"
android:text="8"
android:textColor="@android:color/black"
android:textSize="30sp" />

<Button
android:id="@+id/button3"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="@android:color/background_light"
android:text="9"
android:textColor="@android:color/black"
android:textSize="30sp" />

<ImageButton
android:id="@+id/imageButton"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="@android:color/background_light"
app:srcCompat="@drawable/divide" />
</LinearLayout>

<LinearLayout
android:layout_width="match_parent"
android:layout_height="87dp"
android:orientation="horizontal"
android:weightSum="4">

<Button
android:id="@+id/button"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="@android:color/background_light"
android:text="4"
android:textColor="@android:color/black"
android:textSize="30sp" />

<Button
android:id="@+id/button2"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="@android:color/background_light"
android:text="5"
android:textColor="@android:color/black"
android:textSize="30sp" />

<Button
android:id="@+id/button3"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="@android:color/background_light"
android:text="6"
android:textColor="@android:color/black"
android:textSize="30sp" />

<ImageButton
android:id="@+id/imageButton"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="@android:color/background_light"
app:srcCompat="@drawable/multiply" />
</LinearLayout>

<LinearLayout
android:layout_width="match_parent"
android:layout_height="87dp"
android:orientation="horizontal"
android:weightSum="4">

<Button
android:id="@+id/button"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="@android:color/background_light"
android:text="1"
android:textColor="@android:color/black"
android:textSize="30sp" />

<Button
android:id="@+id/button2"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="@android:color/background_light"
android:text="2"
android:textColor="@android:color/black"
android:textSize="30sp" />

<Button
android:id="@+id/button3"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="@android:color/background_light"
android:text="3"
android:textColor="@android:color/black"
android:textSize="30sp" />

<ImageButton
android:id="@+id/imageButton"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="@android:color/background_light"
app:srcCompat="@drawable/subtract" />
</LinearLayout>

<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">

<LinearLayout
android:layout_width="192dp"
android:layout_height="match_parent"
android:gravity="center"
android:orientation="vertical">

<Button
android:id="@+id/button15"
android:layout_width="150dp"
android:layout_height="wrap_content"
android:background="@color/clrBlue"
android:text="clear"
android:textSize="25sp" />
</LinearLayout>

<Button
android:id="@+id/button3"
android:layout_width="96dp"
android:layout_height="match_parent"
android:background="@android:color/background_light"
android:text="0"
android:textColor="@android:color/black"
android:textSize="30sp" />

<ImageButton
android:id="@+id/imageButton"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/background_light"
app:srcCompat="@drawable/add" />
</LinearLayout>

</LinearLayout>

<ImageButton
android:id="@+id/imageButton5"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
android:background="@color/transparent"
android:paddingRight="50dp"
android:paddingTop="125dp"
app:srcCompat="@drawable/equal" />
</RelativeLayout>

最佳答案

因为尺寸不同,结果也不同。在布局显示的顶部,您会看到选择了屏幕尺寸为 4.7"的 Nexus 4,我认为 Galaxy S7 的尺寸为 5.1"。

此外,密度像素也可能存在差异。不同像素密度可以引用android文档。 Support Different Pixel Densities

关于android - 不同屏幕显示不一样的界面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49389513/

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