我设计了一个 XML 布局,如下图所示:
我需要在屏幕上平等地放置四个按钮,但我无法让它工作。我尝试了我能想到的所有可能的更改。下面是布局的 XML:
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="40dp"
android:id="@+id/buttonlayout"
android:layout_alignBottom="@id/framelayout">
<TableLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
xmlns:android="http://schemas.android.com/apk/res/android">
<TableRow>
<Button
android:id="@+id/previous"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/previous_icon" />
<Button
android:id="@+id/button_startprint"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/print_icon"
android:padding="10dp" />
<Button
android:id="@+id/button_cam"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/cam_icon"
android:padding="10dp" />
<Button
android:id="@+id/next"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/next_icon"
android:hapticFeedbackEnabled="true"/>
</TableRow>
</TableLayout>
</RelativeLayout>
谁能帮我解决这个问题?