Hallo zusammen,
endlich wieder ein Problem! Und zwar kann ich eine SeekBar mit alignBottom nur an manchen (Text-)Views in meinem RelativeLayout ausrichten - folgendes funktioniert:
Code
<TextView
android:id="@+id/textView3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/colorname"
android:layout_below="@+id/colorname"
android:layout_marginTop="100dp"
android:text="R"
android:textAppearance="?android:attr/textAppearanceLarge" />
<TextView
android:id="@+id/rval"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBaseline="@+id/textView3"
android:layout_marginLeft="20dp"
android:layout_toRightOf="@+id/textView3"
android:text="255"
android:textAppearance="?android:attr/textAppearanceLarge" />
<SeekBar
android:id="@+id/seekBar001"
android:layout_width="200dp"
android:layout_height="wrap_content"
android:layout_alignBottom="@+id/textView3"
android:layout_toRightOf="@+id/textView3" />
Alles anzeigen
folgendes hingegen nicht:
Code
...
<SeekBar
android:id="@+id/seekBar001"
android:layout_width="200dp"
android:layout_height="wrap_content"
android:layout_alignBottom="@+id/rval"
android:layout_toRightOf="@+id/rval" />
Meine Seekbar wird dann zwar rechts von rval positioniert (horizontal also richtig), allerdings nahe des oberen Randes meines RelativeLayouts (vertikal falsch). Ich habe mein Projekt gecleant, neu angelegt, vereinfacht, verkompliziert, ... immer das gleiche Ergebnis... Was kann denn hierfür die Ursache sein, oder ist es - wie es mich sehr be(un?)ruhigen würde - ein Fehler?
Grüße,
FargoTof
EDIT: Sieht dann so aus wie im Anhang: Obwohl kein margin angegeben ist, landet die SeekBar sonstwo... Ausrichten am "R" klappt, an der "255" nicht.