2017-11-13 4 views
0

Android用のLinphoneライブラリを使用しようとしています。指定したライブラリをすべてインストールしました。プロジェクトを実行しようとしているときに、以下のエラーが表示されます。

Process: org.linphone, PID: 13440 
    java.lang.RuntimeException: Unable to start activity ComponentInfo{org.linphone/org.linphone.LinphoneLauncherActivity}: android.content.res.Resources$NotFoundException: Resource ID #0x7f0a003b type #0x5 is not valid 
     at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2325) 
     at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2387) 
     at android.app.ActivityThread.access$800(ActivityThread.java:151) 
     at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1303) 
     at android.os.Handler.dispatchMessage(Handler.java:102) 
     at android.os.Looper.loop(Looper.java:135) 
     at android.app.ActivityThread.main(ActivityThread.java:5254) 
     at java.lang.reflect.Method.invoke(Native Method) 
     at java.lang.reflect.Method.invoke(Method.java:372) 
     at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:903) 
     at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:698) 
    Caused by: android.content.res.Resources$NotFoundException: Resource ID #0x7f0a003b type #0x5 is not valid 
     at android.content.res.Resources.getBoolean(Resources.java:999) 
     at org.linphone.LinphoneLauncherActivity.onCreate(LinphoneLauncherActivity.java:50) 
     at android.app.Activity.performCreate(Activity.java:5990) 
     at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1106) 
     at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2278) 
     at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2387)  
     at android.app.ActivityThread.access$800(ActivityThread.java:151)  
     at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1303)  
     at android.os.Handler.dispatchMessage(Handler.java:102)  
     at android.os.Looper.loop(Looper.java:135)  
     at android.app.ActivityThread.main(ActivityThread.java:5254)  
     at java.lang.reflect.Method.invoke(Native Method)  
     at java.lang.reflect.Method.invoke(Method.java:372)  
     at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:903)  
     at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:698)  

このため、私の仕事が固まっているので、どのように解決できるか教えてください。 ありがとうございました!!

+0

」としてそこに空の文字列をCONCATあなたも、私はのEditTextで任意の整数値を設定していない関連するコード – Raghunandan

答えて

0

に関しては、これはANS:リソースID番号0x7f030027:
Android Resources$NotFoundException: Resource ID #0x7f030027

、リソース$ NotFoundExceptionのためのあなたのRファイルを確認することができます。どのリソースが問題を作り出しているかを教えてくれます。別の解決策として、私はあなたがsetTextまたは任意のコンテンツをintとするかもしれないと思います。そして、あなたがここで知っているように、コンパイラは対応するリソース値を探します。だから、単に「

+0

を投稿する必要があります。 Linphoneライブラリを使ってビデオ通話をしています。私は完全なセットアップをして、今私がそれを実行しようとしているとき、それは私にエラーを与えています。 –

関連する問題