Лучший способ - использовать ConstraintLayout .
Добавьте его в зависимости от модуля приложения:
dependencies {
[...]
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
}
Затем создайте, например, LinearLayout для элементов текстовых частей, каждый из которых имеет вес 1.
Затем для нижней части используйте ContraintLayout с Guidelines на 33% и 66% и поместите линии между точками, используя ограничения. Ваш код должен выглядеть примерно так:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".MainActivity">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="center"
android:text="Place Order" />
<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="center"
android:text="Go to Collect" />
<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="center"
android:text="Collect Order" />
</LinearLayout>
<android.support.constraint.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<android.support.constraint.Guideline
android:id="@+id/guideline33"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
app:layout_constraintGuide_percent="0.33" />
<android.support.constraint.Guideline
android:id="@+id/guideline66"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
app:layout_constraintGuide_percent="0.66" />
<ImageView
android:id="@+id/dot1"
android:layout_width="10dp"
android:layout_height="10dp"
android:src="@drawable/circle_orange"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="@+id/guideline33" />
<ImageView
android:id="@+id/dot2"
android:layout_width="10dp"
android:layout_height="10dp"
android:src="@drawable/circle_orange"
app:layout_constraintLeft_toLeftOf="@+id/guideline33"
app:layout_constraintRight_toRightOf="@+id/guideline66" />
<ImageView
android:id="@+id/dot3"
android:layout_width="10dp"
android:layout_height="10dp"
android:src="@drawable/circle_orange"
app:layout_constraintLeft_toLeftOf="@+id/guideline66"
app:layout_constraintRight_toRightOf="parent" />
<ImageView
android:layout_width="0dp"
android:layout_height="4dp"
android:layout_marginStart="10dp"
android:layout_marginLeft="10dp"
android:layout_marginEnd="10dp"
android:layout_marginRight="10dp"
android:src="@drawable/square_orange"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toRightOf="@id/dot1"
app:layout_constraintRight_toLeftOf="@id/dot2"
app:layout_constraintTop_toTopOf="parent" />
<ImageView
android:layout_width="0dp"
android:layout_height="4dp"
android:layout_marginStart="10dp"
android:layout_marginLeft="10dp"
android:layout_marginEnd="10dp"
android:layout_marginRight="10dp"
android:src="@drawable/square_orange"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toRightOf="@id/dot2"
app:layout_constraintRight_toLeftOf="@id/dot3"
app:layout_constraintTop_toTopOf="parent" />
</android.support.constraint.ConstraintLayout>
, где Точка и Квадрат - это рисованные фигуры:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid android:color="#FF9800" />
</shape>
и
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="oval">
<solid android:color="@color/hek_orange" />
</shape>
Это дает вам это:
Играйте с полями по своему усмотрению, чтобы создать достаточно места между верхней и нижней частью и точками и линиями.