Ich bin neu in Android-Programmierung, aber von wie viel ich von den Layouts aus der documentation verstanden habe, RelativeLayout wird meistens verwendet, wenn Sie die Ansichten basierend auf einigen Regeln und das FrameLayout benötigen, wenn Sie Ansichten überlappen möchten.Unterschied zwischen Frame und Relative Layout?
Aber leider für das folgende Programm bekomme ich die Arbeit von FrameLayout mit RelativeLayout getan. Ich habe meine Arbeit erledigt, aber um zu verstehen, vermisse ich etwas in dem Unterschied? Wie kamen die Tasten über mein Bild? (. Auch das andere Bild überlappt)
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<ImageView
android:id="@+id/imageView1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/ic_launcher"
/>
<ImageView
android:id="@+id/imageView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/ic_launcher"
android:layout_alignParentTop="true"
android:layout_alignLeft="@id/imageView1"
/>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignBottom="@+id/imageView1"
android:gravity="center"
android:orientation="horizontal"
android:weightSum="1.0" >
<Button
android:id="@+id/button1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="0.33"
android:text="Login" />
<Button
android:id="@+id/button2"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="0.33"
android:text="Register" />
<Button
android:id="@+id/button3"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="0.33"
android:text="Try application" />
</LinearLayout>
</RelativeLayout>
http://StackOverflow.com/a/4905403/1434631 – Nermeen