One last question if i have an apk and i'm looking in the androidmanifest and i see
<activity android:theme="@android:style/Theme.Black.NoTitleBar"
Which makes sense cause the apk has a black background and doesn't show the status bar. So my question is since i made the last apk transparent in the styles.xml by just adding .Wallpaper can i just do that within the androidmanifest.xml so it would look like this
<activity android:theme="@android:style/Theme.Wallpaper"
But still shows a black background so i go to styles like usual and the theme isn't even listed in there. So i go looking through all the different folders and i find the two folders layout-land and layout-port each contain an xml called main.xml so i open that and it lists this at the beginning
<?xml version="1.0" encoding="UTF-8"?>
<LinearLayout android
rientation="vertical" android:background="#ff000000" android:layout_width="fill_parent" android:layout_height="fill_parent"
xmlns:android="http://schemas.android.com/apk/res/android">
and i see background set to #ff000000 which is black like the background is supposed to be so i change it to #ff990000 just to make sure it's right i put it on my phone and if force closes every time
so i go in androidmanifest.xml and change this
<activity android:theme="@android:style/Theme.Black.NoTitleBar"
to
<activity android:theme="@android:style/Theme.Wallpaper"
and nothing so my question is when i see these themes where exactly are they pointing to? like what is @android:style/Theme.Black.NoTitleBar is that like located in the framework or something?