Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>You can use something like this</p> <pre><code>&lt;style name="MyTheme" parent="android:style/Theme.Holo.Light"&gt; &lt;item name="android:actionOverflowButtonStyle"&gt;@style/MyActionButtonOverflow&lt;/item&gt; &lt;/style&gt; &lt;style name="MyActionButtonOverflow" parent="android:style/Widget.Holo.ActionButton.Overflow"&gt; &lt;item name="android:src"&gt;@drawable/my_action_bTutton_overflow&lt;/item&gt; &lt;/style&gt; </code></pre> <p>in your manifestfile</p> <pre><code>&lt;application android:theme="@style/MyTheme" &gt; </code></pre> <p><strong>If you want to chane actionBar color</strong> @style/MyActionBar</p> <pre><code> &lt;!-- Support library compatibility --&gt; &lt;item name="actionBarStyle"&gt;@style/MyActionBar&lt;/item&gt; &lt;/style&gt; &lt;!-- ActionBar styles --&gt; &lt;style name="MyActionBar" parent="@style/Widget.AppCompat.Light.ActionBar.Solid.Inverse"&gt; &lt;item name="android:background"&gt;@color/app_theme_color&lt;/item&gt; &lt;!-- Support library compatibility --&gt; &lt;item name="background"&gt;@color/app_theme_color&lt;/item&gt; &lt;item name="android:alwaysDrawnWithCache"&gt;true&lt;/item&gt; &lt;item name="android:displayOptions"&gt;showTitle|showHome|homeAsUp&lt;/item&gt; &lt;item name="android:icon"&gt;@android:color/transparent&lt;/item&gt; &lt;/style&gt; </code></pre> <p>Then in your <code>AndroidManifest.xml</code> you need to refer this one inside your <code>application</code> tag.</p> <pre><code> android:theme="@style/CustomActionBarTheme" </code></pre>
 

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