Advertisement
Guest User

Untitled

a guest
Feb 27th, 2015
197
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.27 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3. package="com.zheek.story"
  4. android:versionCode="1"
  5. android:versionName="1.0" >
  6.  
  7. <uses-sdk
  8. android:minSdkVersion="13"
  9. android:targetSdkVersion="20" />
  10.  
  11. <application
  12. android:allowBackup="true"
  13. android:icon="@drawable/logo"
  14. android:label="@string/app_name"
  15. android:theme="@android:style/Theme.Holo.Light">
  16. <activity
  17. android:name=".Main"
  18. android:label="@string/app_name" >
  19. <intent-filter>
  20. <action android:name="android.intent.action.MAIN" />
  21.  
  22. <category android:name="android.intent.category.LAUNCHER" />
  23. </intent-filter>
  24. </activity>
  25.  
  26. 02-26 21:50:42.546: E/AndroidRuntime(3131): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.zheek.story/com.xxx.xxx.list}: android.view.InflateException: Binary XML file line #7: Error inflating class android.widget.ListView
  27. 02-26 21:50:42.546: E/AndroidRuntime(3131): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2184)
  28. 02-26 21:50:42.546: E/AndroidRuntime(3131): at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2233)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement