在模拟器中,edittext 和按钮的大小看起来不错,但在摩托罗拉里程碑中,它们都非常小。我认为有不同类型的屏幕布局。是否可以自动调整大小?我的xml如下:
<?xml version="1.0" encoding="utf-8"?><RelativeLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
xmlns:android="http://schemas.android.com/apk/res/android">
<EditText android:id="@+id/txtToText_e"
android:layout_width="270px"
android:layout_height="wrap_content"
android:textSize="18sp"
android:hint="Type To Compose"
android:layout_alignParentBottom = "true"
android:layout_alignParentLeft="true"/> <Button android:text="Send"
android:id="@+id/btnDone_e"
android:layout_width="85px"
android:layout_height="wrap_content"
android:layout_alignParentBottom = "true"
android:layout_alignParentRight="true"/>
为了在将手机从纵向变为横向时自动调整大小的编辑文本,我在 AndroidManifest.xml 中添加了这些 xml 代码
<supports-screens android:smallScreens="true"
android:normalScreens="true"
android:largeScreens="true"
android:anyDensity="true" />
但没有任何改变=[。如何解决?
谢谢你。