Я считаю, что большинство преподавателей в режиме онлайн находятся примерно на 2 кнопки рядом друг с другом, но я не смог получить желаемое расположение, как на картинке.Когда я вставляю относительное расположение, все кнопки перекрываются вместе, независимо от того, положил ли я android: layout_above: "XX" Все мои общие, 0,00, кнопки возврата и оплаты, мне нужно вывести их внизу.это мой оригинальный код:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<TextView
android:id="@+id/billTV"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="TextView" />
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="bottom"
android:orientation="horizontal" >
<Button
android:id="@+id/backB"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Back" />
<Button
android:id="@+id/payB"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Pay" />
</LinearLayout>