1

Nexus 4 では、アプリは次のようになります。Eclipse の WYSIWYG 画面では、アプリは完全に正常に見えます。この xml ファイルは次のとおりです: (元のファイルは非常に長いため、問題とは関係がないと判断したため、すべてのテキストビューとボタンを削除しました)

<?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が壊れているだけですか?

4

0 に答える 0