31 Mayıs 2012, PERŞEMBE
Sağ yatay LinearLayout düğmesi Align
Sadece hızlı aptalca bir soru. Eğer eklenen resim bakarsanız. Benim düğmeyi sağa hizalı olması lazım ama nedense ile çalışmıyor 'ağırlık:'...
İşte bu düzen için benim kod:
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:layout_marginTop="35dp">
<TextView
android:id="@ id/lblExpenseCancel"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/cancel"
android:textColor="#404040"
android:layout_marginLeft="10dp"
android:textSize="20sp"
android:layout_marginTop="9dp" />
<Button
android:id="@ id/btnAddExpense"
android:layout_width="wrap_content"
android:layout_height="45dp"
android:background="@drawable/stitch_button"
android:layout_marginLeft="10dp"
android:text="@string/add"
android:layout_gravity="right"
android:layout_marginRight="15dp" />
</LinearLayout>
Neden çalışıyor?! Teşekkürler çocuklar...
CEVAP
31 Mayıs 2012, PERŞEMBE
Bunun için Aşağıdaki Kodu kullanın
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="35dp"
android:orientation="horizontal" >
<TextView
android:id="@ id/lblExpenseCancel"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:layout_marginTop="9dp"
android:text="@string/cancel"
android:textColor="#404040"
android:textSize="20sp" />
<Button
android:id="@ id/btnAddExpense"
android:layout_width="wrap_content"
android:layout_height="45dp"
android:layout_alignParentRight="true"
android:layout_marginLeft="10dp"
android:layout_marginRight="15dp"
android:background="@drawable/stitch_button"
android:text="@string/add" />
</RelativeLayout>
Bunu Paylaş:
Android - LinearLayout çocuk Yatay kay...
Android - Merkezi Yatay LinearLayout i...
bootstrap: düğmesi ile giriş align...
Nasıl (dikey) ekleyin yatay bir Linear...
Nasıl LinearLayout sekmeli yapmak mı?...