Qiqi Abaziz'in cevabı tamam, ancak yine de uzun süredir uyumluluk paketi ile çalışmasını sağlamak ve stili doğru öğelere uygulamak için uğraştım. Ayrıca, şeffaflık kesmek de gereksizdir. İşte v8 ve üzeri için çalışan eksiksiz bir örnek:
values \ styles.xml
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="MyActivityTheme" parent="@style/Theme.AppCompat">
<item name="actionBarStyle">@style/NoLogoActionBar</item>
<item name="android:actionBarStyle">@style/NoLogoActionBar</item>
</style>
<style name="NoLogoActionBar" parent="@style/Widget.AppCompat.ActionBar">
<item name="displayOptions">showHome</item>
<item name="android:displayOptions">showHome</item>
</style>
</resources>
AndroidManifest.xml (kabuk)
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<uses-sdk android:minSdkVersion="8" android:targetSdkVersion="19"/>
<application android:theme="@android:style/Theme.Light.NoTitleBar">
<activity android:theme="@style/PentActivityTheme"/>
</application>
</manifest>