我正在开发android中的图表应用程序。 我已经在dp中设置了所有布局参数,但我仍然面临着不同屏幕尺寸的对齐问题..
示例我的登录按钮或图表与普通的4英寸屏幕相比,屏幕尺寸更大。
这是操作系统版本中的错误还是我们需要为每种类型的屏幕尺寸设置参数。
两个不同手机中同一登录界面的截图
答案 0 :(得分:0)
要避免此类问题,请将按钮,文本字段等对齐到屏幕边缘,例如
// for aligning it to the left of screen
android:layout_alignParentLeft="true"
// for aligning it to the right of screen
android:layout_alignParentRight="true"
// for aligning it to the Bottom of screen
android:layout_alignParentBottom="true"
然后你的小部件不会改变屏幕底部,右侧或左侧的原始位置
不要忘记投票答案:)
答案 1 :(得分:0)
使用相对布局作为主布局。并在其中添加一个LinearLayout布局。这是您的登录框的容器。使用android:layout_centerInParent =“true”将对齐设置为居中。在此容器中添加您的登录框。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/RelativeLayout1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".MainActivity" >
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:orientation="vertical" >
</LinearLayout>
</RelativeLayout >