Can we change the colour of title in an Android application.
I want to change the colour of label which has contents Abc Supply Company. This label is in Manifest file. Can we change the colour for this label. Looking forward to your reply. thanks.
Can we change the colour of title in an Android application.
I want to change the colour of label which has contents Abc Supply Company. This label is in Manifest file. Can we change the colour for this label. Looking forward to your reply. thanks.
I think you want to change color of Application Label that comes in every screen.If i am right then there is no solution
In this case you have use theme for activity in android manifest file like this to remove that label
android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen"
Then design you own custom Label in Layout and then you can do whatever you want to do.
Hope this help you :)
Solution for this is known as Custom Title bar in Android, check this article: http://coderzheaven.com/2011/06/custom-title-bar-in-android/
Of course you can do.
You need to get reference of your
Textview yourTextView = ( TextView ) findViewById( R.id.YOUR_TEXT_VIEW );
and then call the function setTextColor( YOUR COLOR );