Category Archives: Android Development

How to remove the title or "Application Name" bar

To remove the bar that appears at the top of your activity, modify your AndroidManifest.xml document.  Foreach activity, add the line:

android:theme="@android:style/ThemeNoTitleBar.Fullscreen"

Making the result look like:

<activity android:name=".MainActivity"
          android:label="@string/app_name"
          android:theme="@android:style/Theme.NoTitleBar.Fullscreen">

Android - How to save application settings/preferences

Here is the answer! 🙂

http://stackoverflow.com/questions/2154438/how-to-implement-remember-me-function-in-login-of-android-activity

How to import a project

Have a zip file and want to import it into eclipse?  Easy.

  • File->Import->General->Existing Projects Into Workspace
  • Check select archive file, click browse and select the archive.
  • Under Projects, select the project it found.
  • Click Next

Done!