tags:

views:

34

answers:

1

From the beging The android app has black background, I want to make all these changes, How is that possible

A: 

In your app's manifest, use something like

<activity android:name="com.troj.yourapp"
android:label="@string/app_name"
android:theme="@android:style/Theme.Light.NoTitleBar.Fullscreen">

if you want to apply a different standard Android (or even custom) theme.

Otherwise, you could just set the background-property of your layout in res/layout/yourlayout.xml

Nick