In my application, I'd like to keep status bar but make its background be the same as the main screen.
So I created a custom theme to set application background:
<resources>
<style name="Theme.Shelves" parent="android:Theme">
<item name="android:windowBackground">@drawable/background_shelf</item>
<item name="android:windowNoTitle">true</item>
</style>
</resources>
Then put it in manifest:
<application android:icon="@drawable/icon"
android:theme="@style/Theme.Shelves"
android:label="@string/app_name">
<activity android:name=".HelloWorld"
android:label="@string/app_name">
And get this one:
Everything is okay except the separator line between status bar and main screen. I thought that it's because of text view padding, so I set it to zero but nothing changed.
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
TextView tv = new TextView(this);
tv.setText("Hello World");
setContentView(tv);
tv.setPadding(0,0,0,0);
}
Please let me know if you have any idea about this. Thanks.