Во-первых, вы можете добавить атрибут orientation
к LinearLayout
, затем установить ориентацию vertical
, как показано ниже:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_orientation="vertical">
<TextView
android:id="@+id/quantity"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Quantity"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="0" />
</LinearLayout>
Если вы не установите ориентацию, в XML по умолчанию ориентация LinearLayout равнаhorizontal
. Так, если вам нужны вертикальные виды в LinearLayout, тогда установите атрибут ориентации как vertical