Actually im fighting with Layouts and i have problem.When i add button in RelativeLayout, he's not exact in place i want him to be.
That is how i want it to looks like
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="New Button"
android:id="@+id/button"
android:layout_alignParentRight="true"
android:layout_alignParentEnd="true" />
Thats what i got.So how i can make button be in corner, thats the first question. Second is, how i can delete this blue stuff from top?
xml looks how he looks when start project. I just add button
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin">
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="New Button"
android:id="@+id/button"
android:layout_alignParentRight="true"
android:layout_alignParentEnd="true" />