0
Ekranın alt kısmında iki düğme kullanmak istiyorum, iki düğmenin düzeni için frag adlı başka bir xml dosyası oluşturdum ve göreli düzene dahil alignParentButtom özniteliği ile ana etkinliğin alanı, ancak bu çalışmıyor.Ekranın alt kısmında xml dosyası içeren pencere öğesi içeriğinin nasıl ayarlanacağı
Bu benim ana xml dosyası
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<include layout="@layout/frag"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true" />
</RelativeLayout>
Ve Böyle bir şey yapması gerektiğini
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal" android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom">
<Button
android:layout_width="0dp"
android:layout_height="wrap_content"
android:text="CONNECT"
android:id="@+id/open"
android:textColor="#ffffff"
android:layout_weight="1"
/>
<Button
android:layout_width="0dp"
android:layout_height="wrap_content"
android:text="DISCONNECT"
android:id="@+id/close"
android:textColor="#ffffff"
android:layout_weight="1"/>
</LinearLayout>
Why this image is not according to its attribute of layout_height="wrap_content"
Bu çalıştı ama alan wrap_content yerine match_parent alanı kaplıyor. Soru, önerilen değişikliklerin ekran görüntüsü ile güncellenir. – Swarnveer
Soruyu uygulamayla yaptığınız değişikliklerle güncelleyin. –
tamamlandı, sadece yüklenen ekran görüntüsünü kontrol edin – Swarnveer