0
我有一個非常簡單的Android活動佈局是這樣的:ImageView的對象總是空
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<ImageView id="@+id/blaimg"
android:layout_width="fill_parent"
android:layout_height="fill_parent"/>
</LinearLayout>
現在,當我做了從onOptionsItemSelected
如下:
ImageView imgView = (ImageView)findViewById(R.id.blaimg);
的imgView
內容總是空! 我在做什麼錯?
謝謝!
哈哈我只好繼續找,直到我看到了差異。 id - > android:id – 2010-09-03 15:44:49
啊,爲了皮特的緣故,這真的是全部問題!該死。非常感謝!我想我一直在看至少2個小時,看看有什麼不對。 – 2010-09-03 15:52:07