я нашел здесь ответа на мой первый вопрос, и мне удалось установить мои две кнопки рядом друг с другом: XML файл:кнопки рядом друг с другом - но каждый из них имеет свою собственную сторону
<LinearLayout
android:id="@+id/linearLayout1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:layout_alignParentTop="false"
android:layout_alignParentLeft="false"
android:layout_alignParentStart="false"
android:layout_alignParentBottom="false"
android:layout_alignParentRight="false"
android:layout_centerHorizontal="true"
android:gravity="center"
android:layout_below="@id/description"
android:layout_alignParentEnd="false">
<!-- Send it Button -->
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/confirm_it"
android:textColor="@color/white"
android:textSize="15sp"
android:layout_weight="0"
android:id="@+id/confirm_button"
android:backgroundTint="@color/darkCyan"
android:onClick="sendName"
/>
<!-- Skip it Button -->
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/skip_it"
android:textColor="@color/white"
android:textSize="15sp"
android:id="@+id/skip_button"
android:backgroundTint="@color/darkCyan"
android:layout_marginLeft="10dp"
android:layout_marginStart="10dp"
android:onClick="skipName"
/>
</LinearLayout>
прямо сейчас Я хочу сделать что-то еще, я все еще хочу, чтобы две кнопки были рядом друг с другом, горизонтально, но я хочу, чтобы каждая из них, например, кнопка SEND слева от страницы, и кнопка SKIP справа от страницы:
Вот что я хочу:
Возможно ли это? и как?
Только то, что мне нужно. Спасибо! – morkuk