xml无法在设备上运行

时间:2013-02-21 16:50:37

标签: android xml

在我的Nexus 4上,我的应用看起来像 this 。该应用程序在日食WYSIWYG屏幕上看起来非常正常。这个xml文件是:(因为原来很长,我删除了所有的textview和按钮,因为我认为这与问题无关)

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:weightSum="100"
android:background="@drawable/testbg">

<RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="0dp"
    android:layout_weight="33"
    android:orientation="vertical" >

    ---- bunch of textviews ---

</RelativeLayout>

<RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="0dp"
    android:layout_weight="57"
    android:orientation="vertical" >

    ---- more TextViews ----

</RelativeLayout>

<LinearLayout
    android:id="@+id/linearLayout1"
    android:layout_width="fill_parent"
    android:layout_height="0dp"
    android:layout_weight="10"
    android:orientation="horizontal"
    android:weightSum="3" >

    ---- 3 buttons ----       

    </LinearLayout>

</LinearLayout>

为什么会这样? xml刚被破坏了吗?

0 个答案:

没有答案