Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>This is quite simple : <strong>you are not overriding android default style</strong>, your just creating a new one which extends <code>android:Widget.EditText</code>. Thus, the style is not applied.</p> <p>To correct this, into your theme definition, just add :</p> <pre><code>&lt;item name="android:editTextStyle"&gt;@style/fap&lt;/item&gt; </code></pre> <p>Now, each time Android instanciate an EditText, when it load default style values, it will find your <code>fap</code> style.</p> <p>Edit: searching through android's source code is very usefull. Check <a href="https://android.googlesource.com/platform/frameworks/base/+/master/core/res/res/values/attrs.xml" rel="nofollow noreferrer">https://android.googlesource.com/platform/frameworks/base/+/master/core/res/res/values/attrs.xml</a><br> <a href="https://android.googlesource.com/platform/frameworks/base/+/master/core/res/res/values/themes.xml" rel="nofollow noreferrer">https://android.googlesource.com/platform/frameworks/base/+/master/core/res/res/values/themes.xml</a><br> <a href="https://android.googlesource.com/platform/frameworks/base/+/master/core/res/res/values/styles.xml" rel="nofollow noreferrer">https://android.googlesource.com/platform/frameworks/base/+/master/core/res/res/values/styles.xml</a><br> <a href="https://android.googlesource.com/platform/frameworks/base/+/master/core/java/android/widget/EditText.java" rel="nofollow noreferrer">https://android.googlesource.com/platform/frameworks/base/+/master/core/java/android/widget/EditText.java</a><br> for example.</p>
    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. This table or related slice is empty.
    1. VO
      singulars
      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