gpt4 book ai didi

android - 如何在android中为多个屏幕实现正确的用户界面

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

这里我正在尝试处理不同的屏幕,这些是我正在尝试处理的几个屏幕,这里如果我调整一个屏幕剩余的屏幕出现错误,没有得到什么问题这是screenshot这是我的代码

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

<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="160dp"
android:gravity="center"
android:paddingLeft="50dp"
android:text="Current Meter Reading"
android:textAppearance="?android:attr/textAppearanceLarge"
android:textColor="@android:color/white" />

<LinearLayout
android:id="@+id/linearLayout1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:gravity="center"
android:orientation="horizontal" >

<EditText
android:id="@+id/editText1"
android:layout_width="130dp"
android:layout_height="wrap_content"
android:inputType="number" />

<Spinner
android:id="@+id/spinner1"
android:layout_width="150dp"
android:layout_height="50dp" />
</LinearLayout>

<AbsoluteLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent" >

<Button
android:id="@+id/saveButton"
android:layout_width="113px"
android:layout_height="wrap_content"
android:layout_x="61dp"
android:layout_y="330dp"
android:background="@drawable/savebutton" />

<Button
android:id="@+id/settingsButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_x="208dp"
android:layout_y="330dp"
android:background="@drawable/settingbutton" />
</AbsoluteLayout>

</RelativeLayout>

最佳答案

为了按照需要去做,您需要支持不同的屏幕尺寸,您需要有不同的布局,还需要对您的 list 文件进行一些更改...

检查这个问题 How to support different screen size in android

和这个链接http://developer.android.com/guide/practices/screens_support.html

关于android - 如何在android中为多个屏幕实现正确的用户界面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21246222/

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