Style not applied when called












0















so Im new to android and this is my problem :
-when I call style to a textview it doesn't change anything ,here is my style.xml :



<?xml version="1.0" encoding="utf-8"?>




<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- App branding color for the app bar -->
<item name="colorPrimary">#009688</item>
<!-- Darker variant for the status bar and contextual app bars -->
<item name="colorPrimaryDark">#00796B</item>
<!-- Theme UI controls like checkboxes and text fields -->
<item name="colorAccent">#536DFE</item>
</style>

<!-- Style for header text in the order form -->
<style name="HeaderTextStyle">
<item name="android:layout_width">wrap_content</item>
<item name="android:layout_height">48dp</item>
<item name="android:gravity">center_vertical</item>
<item name="android:textAllCaps">true</item>
<item name="android:textSize">15sp</item>
<item name="android:textColor">#FF5252</item>
</style>




and here is how I call the style



    <TextView
android:hint="@string/topping"
style="@style/HeaderTextStyle"
/>


I tried to change just the color of the textview using



android:textColor="#FF5252"


but it did nothing



could someone help me , Ill be so greatful ,
Thanks in advance










share|improve this question


















  • 1





    <TextView android:text="@string/topping" style="@style/HeaderTextStyle" /> you have set hint text and changing color of text which is not present use text in tag instead of hint or use textColoHint instead of textColor

    – Taha wakeel
    Nov 22 '18 at 15:52













  • thanks man it works ,can you post it as an answer so I can accept it

    – proPes
    Nov 22 '18 at 17:53
















0















so Im new to android and this is my problem :
-when I call style to a textview it doesn't change anything ,here is my style.xml :



<?xml version="1.0" encoding="utf-8"?>




<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- App branding color for the app bar -->
<item name="colorPrimary">#009688</item>
<!-- Darker variant for the status bar and contextual app bars -->
<item name="colorPrimaryDark">#00796B</item>
<!-- Theme UI controls like checkboxes and text fields -->
<item name="colorAccent">#536DFE</item>
</style>

<!-- Style for header text in the order form -->
<style name="HeaderTextStyle">
<item name="android:layout_width">wrap_content</item>
<item name="android:layout_height">48dp</item>
<item name="android:gravity">center_vertical</item>
<item name="android:textAllCaps">true</item>
<item name="android:textSize">15sp</item>
<item name="android:textColor">#FF5252</item>
</style>




and here is how I call the style



    <TextView
android:hint="@string/topping"
style="@style/HeaderTextStyle"
/>


I tried to change just the color of the textview using



android:textColor="#FF5252"


but it did nothing



could someone help me , Ill be so greatful ,
Thanks in advance










share|improve this question


















  • 1





    <TextView android:text="@string/topping" style="@style/HeaderTextStyle" /> you have set hint text and changing color of text which is not present use text in tag instead of hint or use textColoHint instead of textColor

    – Taha wakeel
    Nov 22 '18 at 15:52













  • thanks man it works ,can you post it as an answer so I can accept it

    – proPes
    Nov 22 '18 at 17:53














0












0








0








so Im new to android and this is my problem :
-when I call style to a textview it doesn't change anything ,here is my style.xml :



<?xml version="1.0" encoding="utf-8"?>




<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- App branding color for the app bar -->
<item name="colorPrimary">#009688</item>
<!-- Darker variant for the status bar and contextual app bars -->
<item name="colorPrimaryDark">#00796B</item>
<!-- Theme UI controls like checkboxes and text fields -->
<item name="colorAccent">#536DFE</item>
</style>

<!-- Style for header text in the order form -->
<style name="HeaderTextStyle">
<item name="android:layout_width">wrap_content</item>
<item name="android:layout_height">48dp</item>
<item name="android:gravity">center_vertical</item>
<item name="android:textAllCaps">true</item>
<item name="android:textSize">15sp</item>
<item name="android:textColor">#FF5252</item>
</style>




and here is how I call the style



    <TextView
android:hint="@string/topping"
style="@style/HeaderTextStyle"
/>


I tried to change just the color of the textview using



android:textColor="#FF5252"


but it did nothing



could someone help me , Ill be so greatful ,
Thanks in advance










share|improve this question














so Im new to android and this is my problem :
-when I call style to a textview it doesn't change anything ,here is my style.xml :



<?xml version="1.0" encoding="utf-8"?>




<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- App branding color for the app bar -->
<item name="colorPrimary">#009688</item>
<!-- Darker variant for the status bar and contextual app bars -->
<item name="colorPrimaryDark">#00796B</item>
<!-- Theme UI controls like checkboxes and text fields -->
<item name="colorAccent">#536DFE</item>
</style>

<!-- Style for header text in the order form -->
<style name="HeaderTextStyle">
<item name="android:layout_width">wrap_content</item>
<item name="android:layout_height">48dp</item>
<item name="android:gravity">center_vertical</item>
<item name="android:textAllCaps">true</item>
<item name="android:textSize">15sp</item>
<item name="android:textColor">#FF5252</item>
</style>




and here is how I call the style



    <TextView
android:hint="@string/topping"
style="@style/HeaderTextStyle"
/>


I tried to change just the color of the textview using



android:textColor="#FF5252"


but it did nothing



could someone help me , Ill be so greatful ,
Thanks in advance







java android android-studio textview styles






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Nov 22 '18 at 15:41









proPesproPes

337




337








  • 1





    <TextView android:text="@string/topping" style="@style/HeaderTextStyle" /> you have set hint text and changing color of text which is not present use text in tag instead of hint or use textColoHint instead of textColor

    – Taha wakeel
    Nov 22 '18 at 15:52













  • thanks man it works ,can you post it as an answer so I can accept it

    – proPes
    Nov 22 '18 at 17:53














  • 1





    <TextView android:text="@string/topping" style="@style/HeaderTextStyle" /> you have set hint text and changing color of text which is not present use text in tag instead of hint or use textColoHint instead of textColor

    – Taha wakeel
    Nov 22 '18 at 15:52













  • thanks man it works ,can you post it as an answer so I can accept it

    – proPes
    Nov 22 '18 at 17:53








1




1





<TextView android:text="@string/topping" style="@style/HeaderTextStyle" /> you have set hint text and changing color of text which is not present use text in tag instead of hint or use textColoHint instead of textColor

– Taha wakeel
Nov 22 '18 at 15:52







<TextView android:text="@string/topping" style="@style/HeaderTextStyle" /> you have set hint text and changing color of text which is not present use text in tag instead of hint or use textColoHint instead of textColor

– Taha wakeel
Nov 22 '18 at 15:52















thanks man it works ,can you post it as an answer so I can accept it

– proPes
Nov 22 '18 at 17:53





thanks man it works ,can you post it as an answer so I can accept it

– proPes
Nov 22 '18 at 17:53












1 Answer
1






active

oldest

votes


















0














You are setting textColor while you havent set text yet, you need to change textColo to textColorHint or change hint to text if you want to use textColor, for hint you use textColorHint and for text you use textColor like this.



<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="some text"
android:textColor="@color/colorPrimaryNero"
android:hint="some hint"
android:textColorHint="@color/colorPrimaryWhite" />





share|improve this answer























    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%2f53434330%2fstyle-not-applied-when-called%23new-answer', 'question_page');
    }
    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    0














    You are setting textColor while you havent set text yet, you need to change textColo to textColorHint or change hint to text if you want to use textColor, for hint you use textColorHint and for text you use textColor like this.



    <TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="some text"
    android:textColor="@color/colorPrimaryNero"
    android:hint="some hint"
    android:textColorHint="@color/colorPrimaryWhite" />





    share|improve this answer




























      0














      You are setting textColor while you havent set text yet, you need to change textColo to textColorHint or change hint to text if you want to use textColor, for hint you use textColorHint and for text you use textColor like this.



      <TextView
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:text="some text"
      android:textColor="@color/colorPrimaryNero"
      android:hint="some hint"
      android:textColorHint="@color/colorPrimaryWhite" />





      share|improve this answer


























        0












        0








        0







        You are setting textColor while you havent set text yet, you need to change textColo to textColorHint or change hint to text if you want to use textColor, for hint you use textColorHint and for text you use textColor like this.



        <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="some text"
        android:textColor="@color/colorPrimaryNero"
        android:hint="some hint"
        android:textColorHint="@color/colorPrimaryWhite" />





        share|improve this answer













        You are setting textColor while you havent set text yet, you need to change textColo to textColorHint or change hint to text if you want to use textColor, for hint you use textColorHint and for text you use textColor like this.



        <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="some text"
        android:textColor="@color/colorPrimaryNero"
        android:hint="some hint"
        android:textColorHint="@color/colorPrimaryWhite" />






        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Nov 23 '18 at 7:51









        Taha wakeelTaha wakeel

        896




        896
































            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%2f53434330%2fstyle-not-applied-when-called%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

            If I really need a card on my start hand, how many mulligans make sense? [duplicate]

            Alcedinidae

            Can an atomic nucleus contain both particles and antiparticles? [duplicate]