<?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="match_parent"
android:orientation="vertical" >
<RelativeLayout
android:layout_width="100dp"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true" >
<Button
android:id="@+id/bb"
android:layout_weight="1"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:drawableLeft="@drawable/bb"
android:drawablePadding="5dp"
android:text="bb" />
<Button
android:id="@+id/cc"
android:layout_weight="1"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_below="@id/bb"
android:drawableLeft="@drawable/cc"
android:drawablePadding="5dp"
android:text="cc" />
</RelativeLayout>
</RelativeLayout>
屏幕中间应该有两个宽度相同的按钮。但是除了空白屏幕之外什么都没有 xx 我在开发 android 方面并不是那么新,但有时我会错过一些让我很头疼的细节。对不起打扰