Как я могу добавить еще одну кнопку или текстовое представление рядом с другой кнопкой?Я новичок в программировании на Android и XML. Вот мой код xml:
<?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"
android:background="@drawable/background_start"
>
<Button
android:id="@+id/prvo"
android:text="Прво копче"
android:textStyle="bold"
android:layout_marginTop="25px"
android:layout_margin="15px"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:visibility="visible"
android:onClick="hello"
/>
<EditText android:maxLines="1"
android:scrollbars="vertical"
android:text="Пиши нешто овде"
android:layout_width="match_parent"
android:id="@+id/editText1"
android:layout_height="wrap_content">
</EditText>
</LinearLayout>
Должен ли я изменить шаблон макета?Switchit к относительному или табличному расположению вместо линейного?