android:图形布局不匹配具有相同屏幕尺寸的模拟器

时间:2014-03-06 11:28:07

标签: android android-layout

当我点击模拟或在智能手机上使用我的应用程序时,它看起来与图形布局编辑不同,更具体地说,高度搞砸了

我的图形布局xml是这样的:

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/ScrollView1"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity" >

<LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical"
    android:gravity="center" >

    <RelativeLayout
        android:layout_width="1050dp"
        android:layout_height="1450dp"
        android:background="@drawable/backright3" >

我在RelativeLayout中有大约100个TextView。 当我效仿时,有谁知道出了什么问题?它在编辑模式下似乎很好。 它会弄乱高度,即使我使用相同的屏幕(编辑模式/模拟器)

(编辑)图片: 在编辑模式:http://s9.postimg.org/xlzho12yn/screen1.png 在模拟器上:http://s28.postimg.org/x826qezwt/screenemulator.png (有些文本视图不会出现因为我编程了所以)

0 个答案:

没有答案