Note that there are some explanatory texts on larger screens.

plurals
  1. POIncreasing CheckboxPreference title and summary text size and glowing of an preference entry
    text
    copied!<p>Hi I am working on Message Settings as a preference.</p> <p>I am trying to change android:title and android:summary text font size of CheckboxPreference.</p> <p><img src="https://i.stack.imgur.com/BwEDH.png" alt="enter image description here"></p> <p>For this I am trying out the below code</p> <pre><code> &lt;PreferenceCategory android:key="prefcategory1" android:title="GENERAL SETTINGS..." &gt; &lt;CheckBoxPreference android:defaultValue="false" android:enabled="true" android:key="checkBoxdelete" android:layout="@layout/mylayout" &lt;!--linking it to mylayout.xml --&gt; android:summary="Deletes old messages as limits are reached" android:title="Delete old messages" /&gt; &lt;/PreferenceCategory&gt; </code></pre> <p>and <strong>mylayout.xml</strong> </p> <p></p> <pre><code>&lt;TextView android:id="@+android:id/title" android:layout_width="wrap_content" android:layout_height="wrap_content" android:paddingLeft="8dp" android:textColor="#FFFFFF" android:textSize="30px" android:textStyle="bold"/&gt; &lt;TextView android:id="@+android:id/summary" android:layout_width="wrap_content" android:layout_height="wrap_content" android:paddingLeft="8dp" android:textColor="#FFFFFF" android:textSize="20px" android:textStyle="bold"/&gt; </code></pre> <p></p> <p>By using this, the text size is increased as in below screen shot.But, I am not able to see the checkbox..How do I resolve this?</p> <p><img src="https://i.stack.imgur.com/pu7Lg.png" alt="enter image description here"></p>
 

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