1

私はいつもエラー

この私の活動

public class ARActivity extends SherlockFragmentActivity {

ArchitectView arview;

@Override
protected void onCreate(Bundle arg0) {
    // TODO Auto-generated method stub
    super.onCreate(arg0);
    setContentView(R.layout.sample_cam);

    this.arview = (ArchitectView) findViewById(R.id.architectView);
    final ArchitectConfig config = new ArchitectConfig(
            WikitudeSDKConstants.WIKITUDE_SDK_KEY);
    this.arview.onCreate(config);

}

@Override
protected void onPostCreate(Bundle savedInstanceState) {
    // TODO Auto-generated method stub
    super.onPostCreate(savedInstanceState);

    this.arview.onPostCreate();
    try {
        this.arview.load("assets/wikitude/imageRecognition/index.html");
    } catch (IOException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }
}

}

そしてこれは私のxmlです

そして、私はエラーが発生します

私を助けてください :(

4

1 に答える 1