Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>To support lower versions, instead of removing the following three parameters, </p> <pre><code> android:textAppearance="?android:attr/textAppearanceListItemSmall" android:background="?android:attr/activatedBackgroundIndicator" android:minHeight="?android:attr/listPreferredItemHeightSmall" </code></pre> <p>You can actually <strong>replace</strong> them with equivalent values/resources.</p> <p>The equivalent values can be obtained from <a href="https://github.com/android/platform_frameworks_base/blob/master/core/res/res/values/themes.xml" rel="noreferrer">https://github.com/android/platform_frameworks_base/blob/master/core/res/res/values/themes.xml</a></p> <p>Now,</p> <ul> <li><p><strong>a)</strong> <code>android:textAppearance="@android:style/TextAppearance.Medium"</code></p></li> <li><p><strong>b)</strong></p> <ol> <li><p>Download a selector from <a href="https://github.com/habzy/Test0011_DialerPad/blob/master/res/drawable/list_item_activated_background.xml" rel="noreferrer">https://github.com/habzy/Test0011_DialerPad/blob/master/res/drawable/list_item_activated_background.xml</a></p></li> <li><p>In the above project browse the resources in hdpi,mdpi etc and get files named <strong>list_activated_holo.9.png</strong></p></li> <li><p>Finally </p></li> </ol> <p><code>android:background="@drawable/activated_background_holo_dark"</code></p></li> <li><p><strong>c)</strong> From the equivalent values obtained , we know that <strong>listPreferredItemHeightSmall</strong> is 48dip </p> <p><code>android:minHeight="48dip"</code></p></li> </ul>
    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. 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.
    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