public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
View v = inflater.inflate(R.layout.myfragment, container,false);
ImageView tv = (ImageView) v.findViewById(R.id.imageView);
tv.setImageResource(R.drawable.h1);
return tv;
}
爲什麼我得到運行時錯誤?孩子已經有父錯誤顯示?
return v?你是這個意思嗎? – Leonidos
請包括更多信息,你會得到幫助。 *確切*你得到什麼錯誤?包含堆棧跟蹤。 (猜猜,返回v,而不是電視,但不可能告訴。) –
謝謝..這是我的一個愚蠢的錯誤。你是正確的,它應該是「返回v」 – Lovy