Hallo,
eine weitere Frage.
Ich habe habe zwei horizontale Tablayouts mit ViewPager2 geschaffen. Jetzt möchte ich rechts neben diesen beiden Layouts je einen Button anbringen (fragt bitte nicht warum).
Gibt es dafür eine Lösung ?
Meine entsprechende XML sieht bis jetzt so aus:
XML
<?xml version="1.0" encoding="utf-8"?>
<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_marginLeft="2dp"
android:layout_marginStart="2dp"
android:layout_marginRight="2dp"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".MainActivity">
<com.google.android.material.tabs.TabLayout
android:id="@+id/tabChef"
android:layout_width="match_parent"
android:layout_height="28dp"
android:background="@drawable/chefbox" />
<com.google.android.material.tabs.TabLayout
android:id="@+id/tabBar"
android:layout_width="match_parent"
android:layout_height="33dp"
android:background="@drawable/box" />
<androidx.viewpager2.widget.ViewPager2
android:id="@+id/view_pager"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</LinearLayout>
Alles anzeigen
android-developers.de/core/attachment/1265/
Danke Wolfgang