Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>splitActionBarWhenNarrow means that it will be split, not moved anywhere and only when narrow. Thus if you are in portrait or wide screen the menu options will always appear at the top. You cannot force ActionBar to be drawn at the bottom. Instead you might want to disable ActionBar completely and putting your own custom view at the bottom with ImageButtons with actionButtonStyle</p> <pre><code>&lt;style name="NoActionBar" parent="@android:style/Theme.Holo.Light"&gt; &lt;item name="android:windowActionBar"&gt;false&lt;/item&gt; &lt;item name="android:windowNoTitle"&gt;true&lt;/item&gt; &lt;/style&gt; &lt;RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="wrap_content" android:layout_height="wrap_content"&gt; &lt;TextView android:id="@+id/title" android:layout_width="0dp" android:layout_height="wrap_content" android:layout_alignParentLeft="true" android:layout_centerVertical="true" android:layout_toLeftOf="@+id/buttons_holder" android:ellipsize="end" style="@style/TextAppearance.Sherlock.Widget.ActionBar.Title"/&gt; &lt;LinearLayout android:id="@+id/buttons_holder" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_centerVertical="true" android:layout_alignParentRight="true" &gt; &lt;ImageButton android:id="@+id/acion_add" android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@drawable/menu_label_add" style="?attr/actionButtonStyle" /&gt; &lt;ImageButton android:id="@+id/action_prev" android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@drawable/menu_label_prev" style="?attr/actionButtonStyle" /&gt; &lt;ImageButton android:id="@+id/action_next" android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@drawable/menu_label_next" style="?attr/actionButtonStyle" /&gt; &lt;/LinearLayout&gt; &lt;/RelativeLayout&gt; </code></pre>
    singulars
    1. This table or related slice is empty.
    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