0

我有一个布局文件,它在 IDE 视图中完美显示,并且没有任何错误。但是当我运行它时,活动是空白的......

为什么会这样?

在此处输入图像描述

有模拟器视图和 IDE 中的视图的屏幕截图:

它的xml代码如下:

<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >

<TableRow
    android:id="@+id/tableRow1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" >

    <QuickContactBadge
        android:id="@+id/quickContactBadge1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />

    <EditText
        android:id="@+id/editText1"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="1"
        android:ems="10"
        android:inputType="textMultiLine"
        android:text="This a pictuer of a hamburger" />

    <EditText
        android:id="@+id/editText2"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="0.5"
        android:ems="10"
        android:inputType="numberDecimal"
        android:text="R41.24" />
</TableRow>

<TableRow
    android:id="@+id/tableRow12"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" >

    <QuickContactBadge
        android:id="@+id/quickContactBadge12"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />

    <EditText
        android:id="@+id/editText21"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="1"
        android:ems="10"
        android:inputType="textMultiLine"
        android:text="This a pictuer of a hamburger" />

    <EditText
        android:id="@+id/editText22"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="0.5"
        android:ems="10"
        android:inputType="numberDecimal"
        android:text="R41.24" />
</TableRow>

活动代码:

public class FoodMenuActivity extends Activity {

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_food_menu);
}

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    // Inflate the menu; this adds items to the action bar if it is present.
    getMenuInflater().inflate(R.menu.food_menu, menu);
    return true;
}

}

4

1 回答 1

0

问题是我的QuickContactBadge,我将其更改为 aImageView并且它有效。

于 2013-07-25T12:59:36.670 回答