Note that there are some explanatory texts on larger screens.

plurals
  1. POHow to set margins to a custom dialog?
    primarykey
    data
    text
    <p>Does anybody knows how can I set margins to a custom dialog? I'm asking because I've a custom dialog but when displayed it stretches to fill the parent, even though I set explicitly WRAP_CONTENT on the layout params.</p> <p>Basically, the dialog contains a listview whose elements must be scrolled down, when the elements are 1 for example, it doesn't stretch, but when more items are added, then the dialog occupies the entire screen. </p> <p>Any suggestions? I've trying all possible combinations of possible solutions without achieving satisfactory results</p> <p>EDIT: Added the dialog layout</p> <pre><code>&lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_margin="50dip" android:orientation="vertical" android:layout_gravity="top|center"&gt; &lt;FrameLayout android:layout_width="fill_parent" android:layout_margin="5dip" android:layout_height="wrap_content"&gt; &lt;TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="center" android:textSize="20sp" android:textColor="@color/black"/&gt; &lt;Button android:layout_height="32dip" android:layout_width="32dip" android:id="@+id/guide_dialog_cross_button" android:background="@drawable/button_cross_white"/&gt; &lt;/FrameLayout&gt; &lt;ListView android:layout_width="fill_parent" android:layout_height="wrap_content" android:fadingEdge="none" android:layout_margin="5dip"/&gt; &lt;ImageButton android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_margin="5dip" /&gt; &lt;/LinearLayout&gt; </code></pre>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload