其實即時戰鬥與佈局和我有問題。當我在RelativeLayout中添加按鈕,他不是確切的地方,我希望他成爲。將按鈕放在角落裏?
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" />
多數民衆贊成我got.So我怎麼可以讓按鍵在角落裏,那是第一個問題。其次是,我如何從頂部刪除這個藍色的東西?
xml看起來他在啓動項目時的樣子。我只是添加按鈕
<?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" />
顯示從RelativeLayout的 –
刪除填充。謝謝。這個藍色東西在頂部是什麼?我如何刪除它? –