Custom font in DatePicker












1















How can I specify the font in all fields in the DatePicker? I did this with some fields.



I can always use custom libraries, but I would like to do this using DatePicker.



Here is my code:



<style name="MyTheme" parent="@style/Theme.MaterialComponents.Light">
<item name="android:datePickerDialogTheme" tools:targetApi="lollipop">
@style/MyDatePickerDialogTheme</item>
</style>
<style name="MyDatePickerDialogTheme" parent="Theme.MaterialComponents.Light.Dialog.Alert">
<item name="android:datePickerStyle">@style/MyDatePickerStyle</item>
<item name="android:yearListItemTextAppearance">
@style/TextAppearance.Material.DatePicker.List.YearLabel</item>
<item name="colorAccent">#FF065DA0</item>
</style>
<style name="MyDatePickerStyle" parent="@android:style/Widget.Material.Light.DatePicker">
<item name="android:headerBackground">@color/primary</item>
<!--<item name="android:calendarTextColor">#e37</item>--> <!--it is work-->
<item name="android:dayOfWeekTextAppearance">
@style/TextAppearance.Material.DatePicker.DayOfWeekLabel</item>
<item name="android:headerMonthTextAppearance">
@style/TextAppearance.Material.DatePicker.MonthLabel</item>
<item name="android:headerDayOfMonthTextAppearance">
@style/TextAppearance.Material.DatePicker.DayOfMonthLabel</item>
<item name="android:headerYearTextAppearance">
@style/TextAppearance.Material.DatePicker.YearLabel</item>
</style>
<style name="TextAppearance.Material.DatePicker.DayOfWeekLabel" parent="TextAppearance.AppCompat">
<item name="android:fontFamily">@font/roboto_regular</item>
<item name="android:textSize">@dimen/txtd14</item>
<item name="android:textColor">@color/white</item>
</style>
<style name="TextAppearance.Material.DatePicker.MonthLabel" parent="TextAppearance.AppCompat">
<item name="android:fontFamily">@font/roboto_regular</item>
<item name="android:textSize">@dimen/txtd24</item>
<item name="android:textColor">@drawable/bg_data_picker_text_selector</item>
</style>
<style name="TextAppearance.Material.DatePicker.DayOfMonthLabel" parent="TextAppearance.AppCompat">
<item name="android:fontFamily">@font/roboto_regular</item>
<item name="android:textSize">@dimen/txtd48</item>
<item name="android:textColor">@drawable/bg_data_picker_text_selector</item>
</style>
<style name="TextAppearance.Material.DatePicker.YearLabel" parent="TextAppearance.AppCompat">
<item name="android:fontFamily">@font/roboto_regular</item>
<item name="android:textSize">@dimen/txtd24</item>
<item name="android:textColor">@drawable/bg_data_picker_text_selector</item>
</style>
<style name="TextAppearance.Material.DatePicker.List.YearLabel" parent="TextAppearance.AppCompat">
<item name="android:fontFamily">@font/roboto_regular</item> <!--it is NOT work-->
<item name="android:textSize">@dimen/txtd28</item> <!--it is work-->
<item name="android:textColor">@color/red</item> <!--it is work-->
</style>


Here is my result:



enter image description here



Thanks.










share|improve this question





























    1















    How can I specify the font in all fields in the DatePicker? I did this with some fields.



    I can always use custom libraries, but I would like to do this using DatePicker.



    Here is my code:



    <style name="MyTheme" parent="@style/Theme.MaterialComponents.Light">
    <item name="android:datePickerDialogTheme" tools:targetApi="lollipop">
    @style/MyDatePickerDialogTheme</item>
    </style>
    <style name="MyDatePickerDialogTheme" parent="Theme.MaterialComponents.Light.Dialog.Alert">
    <item name="android:datePickerStyle">@style/MyDatePickerStyle</item>
    <item name="android:yearListItemTextAppearance">
    @style/TextAppearance.Material.DatePicker.List.YearLabel</item>
    <item name="colorAccent">#FF065DA0</item>
    </style>
    <style name="MyDatePickerStyle" parent="@android:style/Widget.Material.Light.DatePicker">
    <item name="android:headerBackground">@color/primary</item>
    <!--<item name="android:calendarTextColor">#e37</item>--> <!--it is work-->
    <item name="android:dayOfWeekTextAppearance">
    @style/TextAppearance.Material.DatePicker.DayOfWeekLabel</item>
    <item name="android:headerMonthTextAppearance">
    @style/TextAppearance.Material.DatePicker.MonthLabel</item>
    <item name="android:headerDayOfMonthTextAppearance">
    @style/TextAppearance.Material.DatePicker.DayOfMonthLabel</item>
    <item name="android:headerYearTextAppearance">
    @style/TextAppearance.Material.DatePicker.YearLabel</item>
    </style>
    <style name="TextAppearance.Material.DatePicker.DayOfWeekLabel" parent="TextAppearance.AppCompat">
    <item name="android:fontFamily">@font/roboto_regular</item>
    <item name="android:textSize">@dimen/txtd14</item>
    <item name="android:textColor">@color/white</item>
    </style>
    <style name="TextAppearance.Material.DatePicker.MonthLabel" parent="TextAppearance.AppCompat">
    <item name="android:fontFamily">@font/roboto_regular</item>
    <item name="android:textSize">@dimen/txtd24</item>
    <item name="android:textColor">@drawable/bg_data_picker_text_selector</item>
    </style>
    <style name="TextAppearance.Material.DatePicker.DayOfMonthLabel" parent="TextAppearance.AppCompat">
    <item name="android:fontFamily">@font/roboto_regular</item>
    <item name="android:textSize">@dimen/txtd48</item>
    <item name="android:textColor">@drawable/bg_data_picker_text_selector</item>
    </style>
    <style name="TextAppearance.Material.DatePicker.YearLabel" parent="TextAppearance.AppCompat">
    <item name="android:fontFamily">@font/roboto_regular</item>
    <item name="android:textSize">@dimen/txtd24</item>
    <item name="android:textColor">@drawable/bg_data_picker_text_selector</item>
    </style>
    <style name="TextAppearance.Material.DatePicker.List.YearLabel" parent="TextAppearance.AppCompat">
    <item name="android:fontFamily">@font/roboto_regular</item> <!--it is NOT work-->
    <item name="android:textSize">@dimen/txtd28</item> <!--it is work-->
    <item name="android:textColor">@color/red</item> <!--it is work-->
    </style>


    Here is my result:



    enter image description here



    Thanks.










    share|improve this question



























      1












      1








      1








      How can I specify the font in all fields in the DatePicker? I did this with some fields.



      I can always use custom libraries, but I would like to do this using DatePicker.



      Here is my code:



      <style name="MyTheme" parent="@style/Theme.MaterialComponents.Light">
      <item name="android:datePickerDialogTheme" tools:targetApi="lollipop">
      @style/MyDatePickerDialogTheme</item>
      </style>
      <style name="MyDatePickerDialogTheme" parent="Theme.MaterialComponents.Light.Dialog.Alert">
      <item name="android:datePickerStyle">@style/MyDatePickerStyle</item>
      <item name="android:yearListItemTextAppearance">
      @style/TextAppearance.Material.DatePicker.List.YearLabel</item>
      <item name="colorAccent">#FF065DA0</item>
      </style>
      <style name="MyDatePickerStyle" parent="@android:style/Widget.Material.Light.DatePicker">
      <item name="android:headerBackground">@color/primary</item>
      <!--<item name="android:calendarTextColor">#e37</item>--> <!--it is work-->
      <item name="android:dayOfWeekTextAppearance">
      @style/TextAppearance.Material.DatePicker.DayOfWeekLabel</item>
      <item name="android:headerMonthTextAppearance">
      @style/TextAppearance.Material.DatePicker.MonthLabel</item>
      <item name="android:headerDayOfMonthTextAppearance">
      @style/TextAppearance.Material.DatePicker.DayOfMonthLabel</item>
      <item name="android:headerYearTextAppearance">
      @style/TextAppearance.Material.DatePicker.YearLabel</item>
      </style>
      <style name="TextAppearance.Material.DatePicker.DayOfWeekLabel" parent="TextAppearance.AppCompat">
      <item name="android:fontFamily">@font/roboto_regular</item>
      <item name="android:textSize">@dimen/txtd14</item>
      <item name="android:textColor">@color/white</item>
      </style>
      <style name="TextAppearance.Material.DatePicker.MonthLabel" parent="TextAppearance.AppCompat">
      <item name="android:fontFamily">@font/roboto_regular</item>
      <item name="android:textSize">@dimen/txtd24</item>
      <item name="android:textColor">@drawable/bg_data_picker_text_selector</item>
      </style>
      <style name="TextAppearance.Material.DatePicker.DayOfMonthLabel" parent="TextAppearance.AppCompat">
      <item name="android:fontFamily">@font/roboto_regular</item>
      <item name="android:textSize">@dimen/txtd48</item>
      <item name="android:textColor">@drawable/bg_data_picker_text_selector</item>
      </style>
      <style name="TextAppearance.Material.DatePicker.YearLabel" parent="TextAppearance.AppCompat">
      <item name="android:fontFamily">@font/roboto_regular</item>
      <item name="android:textSize">@dimen/txtd24</item>
      <item name="android:textColor">@drawable/bg_data_picker_text_selector</item>
      </style>
      <style name="TextAppearance.Material.DatePicker.List.YearLabel" parent="TextAppearance.AppCompat">
      <item name="android:fontFamily">@font/roboto_regular</item> <!--it is NOT work-->
      <item name="android:textSize">@dimen/txtd28</item> <!--it is work-->
      <item name="android:textColor">@color/red</item> <!--it is work-->
      </style>


      Here is my result:



      enter image description here



      Thanks.










      share|improve this question
















      How can I specify the font in all fields in the DatePicker? I did this with some fields.



      I can always use custom libraries, but I would like to do this using DatePicker.



      Here is my code:



      <style name="MyTheme" parent="@style/Theme.MaterialComponents.Light">
      <item name="android:datePickerDialogTheme" tools:targetApi="lollipop">
      @style/MyDatePickerDialogTheme</item>
      </style>
      <style name="MyDatePickerDialogTheme" parent="Theme.MaterialComponents.Light.Dialog.Alert">
      <item name="android:datePickerStyle">@style/MyDatePickerStyle</item>
      <item name="android:yearListItemTextAppearance">
      @style/TextAppearance.Material.DatePicker.List.YearLabel</item>
      <item name="colorAccent">#FF065DA0</item>
      </style>
      <style name="MyDatePickerStyle" parent="@android:style/Widget.Material.Light.DatePicker">
      <item name="android:headerBackground">@color/primary</item>
      <!--<item name="android:calendarTextColor">#e37</item>--> <!--it is work-->
      <item name="android:dayOfWeekTextAppearance">
      @style/TextAppearance.Material.DatePicker.DayOfWeekLabel</item>
      <item name="android:headerMonthTextAppearance">
      @style/TextAppearance.Material.DatePicker.MonthLabel</item>
      <item name="android:headerDayOfMonthTextAppearance">
      @style/TextAppearance.Material.DatePicker.DayOfMonthLabel</item>
      <item name="android:headerYearTextAppearance">
      @style/TextAppearance.Material.DatePicker.YearLabel</item>
      </style>
      <style name="TextAppearance.Material.DatePicker.DayOfWeekLabel" parent="TextAppearance.AppCompat">
      <item name="android:fontFamily">@font/roboto_regular</item>
      <item name="android:textSize">@dimen/txtd14</item>
      <item name="android:textColor">@color/white</item>
      </style>
      <style name="TextAppearance.Material.DatePicker.MonthLabel" parent="TextAppearance.AppCompat">
      <item name="android:fontFamily">@font/roboto_regular</item>
      <item name="android:textSize">@dimen/txtd24</item>
      <item name="android:textColor">@drawable/bg_data_picker_text_selector</item>
      </style>
      <style name="TextAppearance.Material.DatePicker.DayOfMonthLabel" parent="TextAppearance.AppCompat">
      <item name="android:fontFamily">@font/roboto_regular</item>
      <item name="android:textSize">@dimen/txtd48</item>
      <item name="android:textColor">@drawable/bg_data_picker_text_selector</item>
      </style>
      <style name="TextAppearance.Material.DatePicker.YearLabel" parent="TextAppearance.AppCompat">
      <item name="android:fontFamily">@font/roboto_regular</item>
      <item name="android:textSize">@dimen/txtd24</item>
      <item name="android:textColor">@drawable/bg_data_picker_text_selector</item>
      </style>
      <style name="TextAppearance.Material.DatePicker.List.YearLabel" parent="TextAppearance.AppCompat">
      <item name="android:fontFamily">@font/roboto_regular</item> <!--it is NOT work-->
      <item name="android:textSize">@dimen/txtd28</item> <!--it is work-->
      <item name="android:textColor">@color/red</item> <!--it is work-->
      </style>


      Here is my result:



      enter image description here



      Thanks.







      android fonts styles datapicker






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 15 '18 at 20:50







      UgAr0FF

















      asked Nov 13 '18 at 17:13









      UgAr0FFUgAr0FF

      402412




      402412
























          0






          active

          oldest

          votes











          Your Answer






          StackExchange.ifUsing("editor", function () {
          StackExchange.using("externalEditor", function () {
          StackExchange.using("snippets", function () {
          StackExchange.snippets.init();
          });
          });
          }, "code-snippets");

          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "1"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53286315%2fcustom-font-in-datepicker%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes
















          draft saved

          draft discarded




















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53286315%2fcustom-font-in-datepicker%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Florida Star v. B. J. F.

          Error while running script in elastic search , gateway timeout

          Adding quotations to stringified JSON object values