I get a NPE when I try to launch the App. I don\'t know what causes it. The App should show a map at a website. Then the User can easily type his location into the edittext and
You need to use a Theme.AppCompat theme (or descendant) with this activity.
You have
public class MainActivity extends ActionBarActivity
You are using ActionBar from support library and you need to have Theme.AppCompat for your activity
Apply AppCompat theme for the activity in manifest file.