0
    public class MyActivity extends Activity {

        /** Called when the activity is first created. */
        @Override
        public void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);

            //R.layout.main has an illegal element (e.g. no layout_height attribute) 
            //But no exception is thrown at this line.
            setContentView(R.layout.main); 

        } //Exception will be thrown after this line. Where to catch it?
    }
4

1 に答える 1

3

真剣ですか?そのようなものは、ただ「捕まえる」ことはできません...修正する必要があります。XML ファイルを修正するだけです... Exception などをキャッチしても意味がありません。捕まえた後はどうする?

于 2010-09-29T13:48:01.173 に答える