javaandroidandroid-holo-everywhere

why app is not run in android device version 2.3 to 2.3.7


<uses-sdk
    android:minSdkVersion="8"
    android:targetSdkVersion="19" />



<application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" 
   >

My minsdkversion & target is above But this app is not run in 2.3 android device version.So plz help me


Solution

  • You must use getSupportActionBar() instead of getActionBar().