First, in main.xml, remove this line:
android:background="@color/cornsilk"
Now, in AndroidManifest.xml, change this line:
<activity android:name=".MyActivity">to:
<activity android:name=".MyActivity" android:theme="@android:style/Theme.Translucent">
Redeploy (mvn clean install) and the background is gone. Not too useful for our text-based example, but maybe if we were doing a graphic-based overlay.
No comments:
Post a Comment