Я пытаюсь получить следующий макет:
Итак, я написал следующий код:
<RelativeLayout 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"
tools:context=".MainActivity">
<!-- Main title -->
<TextView
android:id="@+id/MainTitle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_marginBottom="110dp"
android:gravity="center"
android:singleLine="true"
android:text="Tittle"
android:textSize="10sp"
android:textStyle="bold" />
<!-- Login message -->
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_marginBottom="40dp"
android:gravity="center"
android:singleLine="true"
android:text="Login as"
android:textSize="6sp"
android:textStyle="bold" />
<!-- Buttons -->
<com.google.android.material.card.MaterialCardView
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:cardCornerRadius="5dp"
app:cardElevation="2dp">
<LinearLayout
android:layout_width="match_parent"
android:orientation="vertical"
android:layout_margin="1dp"
android:layout_height="wrap_content">
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="button 1" />
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="button 2" />
</LinearLayout>
</com.google.android.material.card.MaterialCardView>
</RelativeLayout>
Но у меня есть:
Я действительно изо всех сил пытаюсь понять, как достичь этого базового c макета. Что я делаю не так?