Ich versuche, das folgende Layout in meinem Android-Anwendung zu machen:Android - mehrere ImageButtons in RelativeLayout ausrichten
Ich habe diesen Code zwei separate Layouts haben:
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".MainActivity">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:background="@color/colorPrimary" />
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:background="@android:color/white" />
</LinearLayout>
Die Unteres Layout wird eine ViewPager
haben, weil es mehrere Seiten mit diesen ImageButton
s geben wird, meine Frage ist, wie kann ich die Tasten perfekt in jedem Layout/Fragment ausrichten?