Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>I have corrected your layout. Use fill_parent instead of wrap content for child views. I have used default android drawables and colors, replace that with your drawables and styles.</p> <pre><code>&lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/LinearLayout1" style="@android:style/ButtonBar" android:layout_width="fill_parent" android:gravity="center" android:layout_height="wrap_content" android:orientation="horizontal" &gt; &lt;Button android:id="@+id/job" android:layout_width="0dip" android:layout_height="fill_parent" android:layout_gravity="center" android:layout_margin="2dp" android:layout_weight="4" android:background="#33B5E5" android:drawableLeft="@android:drawable/btn_star" android:onClick="jobPressed" android:padding="5dp" android:text="Add to Job fgh" android:textColor="@android:color/white" android:textSize="10sp" /&gt; &lt;ImageButton android:id="@+id/bookmark" android:layout_width="0dip" android:layout_height="fill_parent" android:layout_gravity="center" android:layout_margin="2dp" android:layout_weight="1" android:background="#33B5E5" android:onClick="bookmarkPressed" android:padding="5dp" android:scaleType="fitCenter" android:src="@android:drawable/ic_input_add" /&gt; &lt;Button android:id="@+id/itemDetailsButton" android:layout_width="0dip" android:layout_height="fill_parent" android:layout_gravity="center" android:layout_margin="2dp" android:layout_weight="4" android:background="#33B5E5" android:drawableRight="@android:drawable/ic_delete" android:onClick="itemDetailsPressed" android:padding="5dp" android:text="Item Details" android:textColor="@android:color/white" android:textSize="10sp" /&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.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      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