試圖讓一個Android 2.2應用程序以SurfaceView作爲基本視圖啓動,並在上面放置一個按鈕,位於屏幕底部附近。到目前爲止,沒有運氣。它每次嘗試啓動時都會崩潰。我已經檢查過以確保活動已在清單中註冊。SurfaceView:ClassCastException,無法啓動活動
這裏是我的Java代碼:
public class Dragable extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
}
,這裏是我的main.xml
:
<?xml version="1.0" encoding="utf-8"?>
<SurfaceView xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/surface_home"
>
<Button
android:id="@+id/add_new"
android:text="@string/add_new"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
/>
</SurfaceView>
和我的清單:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example"
android:versionCode="1"
android:versionName="1.0">
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".Dragable"
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>
<uses-sdk android:minSdkVersion="8" />
</manifest>
,這裏是我的錯誤:
11-29 11:58:52.620: ERROR/AndroidRuntime(512): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.example/com.example.Dragable}: java.lang.ClassCastException: android.view.SurfaceView
似乎無法找到任何與SO相關的搜索操作。我的appologies,如果這已經問過。
這就是您在活動中所擁有的一切嗎?如果不是,請粘貼完整的活動代碼嗎? – Cristian 2010-11-29 17:19:41
@Cristian就是這樣。沒有什麼可以看到的。 – wheaties 2010-11-29 17:23:27