我剛開始android編程。我一直在RelativeLayout
中寫xml,發現gravity
屬性不起作用。佈局中的每個元素都相互重疊。我意識到可能有更好的方法來進行定位,但我很想知道,這是什麼,我不正確?使用下面請大家幫我出android xml下的重力屬性不起作用
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/message"
android:gravity="start"
/>
<Button
android:id="@+id/btnclose"
android:textColor="#ffffff"
android:background="#780956"
android:textSize="18sp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:onClick="close"
android:text="close"
android:gravity="bottom"
/>
<Button
android:id="@+id/btnclick"
android:textColor="#ffffff"
android:background="#123456"
android:textSize="18sp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:onClick="close"
android:text="click"
android:gravity="center"
/>
</RelativeLayout>