解析android res 運(yùn)行錯(cuò)誤的問題
更新時(shí)間:2013年06月19日 09:21:44 作者:
本篇文章是對(duì)android中res運(yùn)行錯(cuò)誤的問題進(jìn)行了詳細(xì)的分析介紹,需要的朋友參考下
復(fù)制代碼 代碼如下:
W/ResourceType( 756): Failure getting entry for 0x7f020004 (t=1 e=4) in package 0: 0xffffffb1
D/AndroidRuntime( 756): Shutting down VM
W/dalvikvm( 756): threadid=1: thread exiting with uncaught exception (group=0x2aac47c8)
E/AndroidRuntime( 756): FATAL EXCEPTION: main
E/AndroidRuntime( 756): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.xxxx.mediacenter/com.xxxx.mediacenter.video.VideoPlayerActivity}: android.view.InflateException: Binary XML file line #279: Error inflating class <unknown>
E/AndroidRuntime( 756): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2663)
E/AndroidRuntime( 756): at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2679)
E/AndroidRuntime( 756): at android.app.ActivityThread.access$2300(ActivityThread.java:125)
E/AndroidRuntime( 756): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:2033)
E/AndroidRuntime( 756): at android.os.Handler.dispatchMessage(Handler.java:99)
E/AndroidRuntime( 756): at android.os.Looper.loop(Looper.java:123)
E/AndroidRuntime( 756): at android.app.ActivityThread.main(ActivityThread.java:4627)
E/AndroidRuntime( 756): at java.lang.reflect.Method.invokeNative(Native Method)
E/AndroidRuntime( 756): at java.lang.reflect.Method.invoke(Method.java:521)
E/AndroidRuntime( 756): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:868)
E/AndroidRuntime( 756): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:626)
E/AndroidRuntime( 756): at dalvik.system.NativeStart.main(Native Method)
E/AndroidRuntime( 756): Caused by: android.view.InflateException: Binary XML file line #279: Error inflating class <unknown>
E/AndroidRuntime( 756): at android.view.LayoutInflater.createView(LayoutInflater.java:513)
E/AndroidRuntime( 756): at com.android.internal.policy.impl.PhoneLayoutInflater.onCreateView(PhoneLayoutInflater.java:56)
E/AndroidRuntime( 756): at android.view.LayoutInflater.createViewFromTag(LayoutInflater.java:563)
E/AndroidRuntime( 756): at android.view.LayoutInflater.rInflate(LayoutInflater.java:618)
E/AndroidRuntime( 756): at android.view.LayoutInflater.rInflate(LayoutInflater.java:621)
E/AndroidRuntime( 756): at android.view.LayoutInflater.rInflate(LayoutInflater.java:621)
E/AndroidRuntime( 756): at android.view.LayoutInflater.rInflate(LayoutInflater.java:621)
E/AndroidRuntime( 756): at android.view.LayoutInflater.rInflate(LayoutInflater.java:621)
E/AndroidRuntime( 756): at android.view.LayoutInflater.rInflate(LayoutInflater.java:621)
E/AndroidRuntime( 756): at android.view.LayoutInflater.inflate(LayoutInflater.java:407)
E/AndroidRuntime( 756): at android.view.LayoutInflater.inflate(LayoutInflater.java:320)
E/AndroidRuntime( 756): at android.view.LayoutInflater.inflate(LayoutInflater.java:276)
E/AndroidRuntime( 756): at com.android.internal.policy.impl.PhoneWindow.setContentView(PhoneWindow.java:198)
E/AndroidRuntime( 756): at android.app.Activity.setContentView(Activity.java:1647)
E/AndroidRuntime( 756): at com.xxxx.mediacenter.video.VideoPlayerActivity.onCreate(VideoPlayerActivity.java:152)
E/AndroidRuntime( 756): at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1047)
E/AndroidRuntime( 756): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2627)
E/AndroidRuntime( 756): ... 11 more
E/AndroidRuntime( 756): Caused by: java.lang.reflect.InvocationTargetException
E/AndroidRuntime( 756): at android.widget.ImageButton.<init>(ImageButton.java:78)
E/AndroidRuntime( 756): at java.lang.reflect.Constructor.constructNative(Native Method)
E/AndroidRuntime( 756): at java.lang.reflect.Constructor.newInstance(Constructor.java:446)
E/AndroidRuntime( 756): at android.view.LayoutInflater.createView(LayoutInflater.java:500)
E/AndroidRuntime( 756): ... 27 more
E/AndroidRuntime( 756): Caused by: android.content.res.Resources$NotFoundException: File res/drawable/seek_thumb.xml from drawable resource ID #0x7f020004
E/AndroidRuntime( 756): at android.content.res.Resources.loadDrawable(Resources.java:1697)
E/AndroidRuntime( 756): at android.content.res.TypedArray.getDrawable(TypedArray.java:601)
E/AndroidRuntime( 756): at android.widget.ImageView.<init>(ImageView.java:118)
E/AndroidRuntime( 756): at android.widget.ImageButton.<init>(ImageButton.java:82)
E/AndroidRuntime( 756): ... 31 more
E/AndroidRuntime( 756): Caused by: android.content.res.Resources$NotFoundException: File res/drawable/seek_thumb.xml from xml type drawable resource ID #0x7f020004
E/AndroidRuntime( 756): at android.content.res.Resources.loadXmlResourceParser(Resources.java:1916)
E/AndroidRuntime( 756): at android.content.res.Resources.loadDrawable(Resources.java:1692)
E/AndroidRuntime( 756): ... 34 more
E/AndroidRuntime( 756): Caused by: java.io.FileNotFoundException: res/drawable/seek_thumb.xml
E/AndroidRuntime( 756): at android.content.res.AssetManager.openXmlAssetNative(Native Method)
E/AndroidRuntime( 756): at android.content.res.AssetManager.openXmlBlockAsset(AssetManager.java:485)
E/AndroidRuntime( 756): at android.content.res.Resources.loadXmlResourceParser(Resources.java:1898)
E/AndroidRuntime( 756): ... 35 more
W/ActivityManager( 615): Force finishing activity com.xxxx.mediacenter/.video.VideoPlayerActivity
W/ActivityManager( 615): Force finishing activity com.xxxx.mediacenter/.center.MediaCenterActivity
I/gralloc ( 615): Alloc:
I/gralloc ( 615): usage: 0x133
I/gralloc ( 615): format: 1
I/gralloc ( 615): 480x232
or
復(fù)制代碼 代碼如下:
E/AndroidRuntime( 758): FATAL EXCEPTION: main
E/AndroidRuntime( 758): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.vixs.mediacenter/com.xxxx.mediacenter.video.VideoPlayerActivity}: android.content.res.Resources$NotFoundException: Resource ID #0x7f030004
E/AndroidRuntime( 758): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2663)
E/AndroidRuntime( 758): at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2679)
E/AndroidRuntime( 758): at android.app.ActivityThread.access$2300(ActivityThread.java:125)
E/AndroidRuntime( 758): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:2033)
E/AndroidRuntime( 758): at android.os.Handler.dispatchMessage(Handler.java:99)
E/AndroidRuntime( 758): at android.os.Looper.loop(Looper.java:123)
E/AndroidRuntime( 758): at android.app.ActivityThread.main(ActivityThread.java:4627)
E/AndroidRuntime( 758): at java.lang.reflect.Method.invokeNative(Native Method)
E/AndroidRuntime( 758): at java.lang.reflect.Method.invoke(Method.java:521)
E/AndroidRuntime( 758): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:868)
E/AndroidRuntime( 758): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:626)
E/AndroidRuntime( 758): at dalvik.system.NativeStart.main(Native Method)
E/AndroidRuntime( 758): Caused by: android.content.res.Resources$NotFoundException: Resource ID #0x7f030004
E/AndroidRuntime( 758): at android.content.res.Resources.getValue(Resources.java:892)
E/AndroidRuntime( 758): at android.content.res.Resources.loadXmlResourceParser(Resources.java:1869)
E/AndroidRuntime( 758): at android.content.res.Resources.getLayout(Resources.java:731)
E/AndroidRuntime( 758): at android.view.LayoutInflater.inflate(LayoutInflater.java:318)
E/AndroidRuntime( 758): at android.view.LayoutInflater.inflate(LayoutInflater.java:276)
E/AndroidRuntime( 758): at com.android.internal.policy.impl.PhoneWindow.setContentView(PhoneWindow.java:198)
E/AndroidRuntime( 758): at android.app.Activity.setContentView(Activity.java:1647)
E/AndroidRuntime( 758): at com.vixs.mediacenter.video.VideoPlayerActivity.onCreate(VideoPlayerActivity.java:152)
E/AndroidRuntime( 758): at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1047)
E/AndroidRuntime( 758): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2627)
資源都放在drawable和layout中就可以啦
您可能感興趣的文章:
- Android開發(fā)adb.exe'' and can be executed.錯(cuò)誤解決方法
- Android開發(fā)常見錯(cuò)誤小結(jié)
- Android開發(fā)中的9個(gè)常見錯(cuò)誤和解決方法
- Caused by: android.os.NetworkOnMainThreadException錯(cuò)誤解決辦法
- 基于Android 錯(cuò)誤信息捕獲發(fā)送至服務(wù)器的詳解
- Android HttpURLConnection.getResponseCode()錯(cuò)誤解決方法
- android layout XML解析錯(cuò)誤的解決方法
- Android調(diào)用堆棧跟蹤實(shí)例分析
相關(guān)文章
Android studio實(shí)現(xiàn)簡(jiǎn)單計(jì)算器
這篇文章主要為大家詳細(xì)介紹了Android studio實(shí)現(xiàn)簡(jiǎn)單計(jì)算器,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2020-03-03
Android開發(fā)之開發(fā)者頭條APP(三)實(shí)現(xiàn)首頁
這篇文章主要介紹了Android開發(fā)之開發(fā)者頭條APP(三)實(shí)現(xiàn)首頁的相關(guān)資料,需要的朋友可以參考下2016-04-04
Android實(shí)現(xiàn)通訊錄效果——獲取手機(jī)號(hào)碼和姓名
這篇文章主要介紹了Android實(shí)現(xiàn)通訊錄效果——獲取手機(jī)號(hào)碼和姓名的相關(guān)資料,需要的朋友可以參考下2016-03-03
Android仿QQ消息提示實(shí)現(xiàn)彈出式對(duì)話框
這篇文章主要為大家詳細(xì)介紹了Android仿QQ消息提示實(shí)現(xiàn)彈出式對(duì)話框,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2016-10-10
Android動(dòng)態(tài)自定義圓形進(jìn)度條
這篇文章主要介紹了Android動(dòng)態(tài)自定義圓形進(jìn)度條,需要的朋友可以參考下2017-03-03
Android 照相機(jī)的實(shí)例應(yīng)用
這篇文章主要介紹了Android 照相機(jī)的實(shí)例應(yīng)用的相關(guān)資料,希望通過此文能掌握Android照相機(jī)的使用方法,需要的朋友可以參考下2017-08-08
ActivityLifecycleCallbacks如何判斷APP是否在前臺(tái)
這篇文章主要為大家詳細(xì)介紹了ActivityLifecycleCallbacks判斷APP是否在前臺(tái)的方法,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2018-07-07

