我正试着在中心放置一个按钮。线性布局的底部。我使用下面的代码,&它不起作用。你们能帮助我吗?
<LinearLayout
android:layout_width="match_parent"
android:layout_height="fill_parent"
android:layout_margin="12dp"
android:background="#f9f9f9"
android:orientation="vertical"
android:padding="10dp" >
</LinearLayout>
母亲的布局是,
{{1}}
答案 0 :(得分:5)
下面的代码会将按钮的中心位置放在布局中。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="fill_parent"
android:layout_margin="12dp"
android:background="#f9f9f9"
android:orientation="vertical"
android:padding="10dp"
android:gravity="bottom|center">
<Button
android:id="@+id/button1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="20dp"
android:layout_gravity="center|bottom"
android:background="#C01831"
android:onClick="meonFb"
android:textColor="#ffffff"
android:layout_alignParentBottom="true"
android:text="Talk to Developer" />
</LinearLayout>