3
我試圖爲LookAR框架編譯一個示例,但每次我在手機上打開應用程序時它都會崩潰。使用LookAR增強現實示例
我使用Eclipse與Android SDK和測試在我的手機與Android 2.3.3薑餅。
package com.example.turistear;
import es.ucm.look.ar.LookAR;
import es.ucm.look.data.EntityData;
import es.ucm.look.data.LookData;
import android.os.Bundle;
public class MyARActivity extends LookAR {
public MyARActivity(){
super(true , true , true , true ,100.0f , true);
}
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
EntityData data = new EntityData () ;
data.setLocation (10 , 0 , 0) ;
LookData.getInstance().getDataHandler().addEntity (data);
LookData.getInstance().updateData();
}
}
這是佈局(我認爲這個問題是在這裏)
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MyARActivity" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:text="@string/hello_world" />
</RelativeLayout>
這是清單
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.turistear"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="9"
android:targetSdkVersion="10" />
<uses-permission android:name="android.permission.CAMERA"/>
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.example.turistear.MyARActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
希望你們能幫助我。
謝謝。