With setTextColor() method we can set the color for Textview.
For this method we need to pass color vallu
Textview has property 'textColor' attribute which is set a color of our choice. We can provide the color as hexa value in one of the four formats: rgb, argb, rrggbb, or aarrggbb. The syntax to set textColor attribute for TextView using different color formats is ... android:textColor="#92B" /> ... android:textColor="#A92B" /> ... android:textColor="#9C27B0" /> ... android:textColor="#CC9C27B0" /> Example 1 – TextView Color Let us create an Android application with Kotlin support in Android Studio and change the text color of TextView in XML layout file. activity_main.xml
xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/linear_layout_id" android:orientation="vertical" android:layout_width="match_parent" android:layout_height="match_parent"> android:id="@+id/text_view_id" android:layout_height="wrap_content" android:layout_width="match_parent" android:gravity="center" android:textSize="40dp" android:padding="50dp" android:textColor="#9C27B0" android:text="@string/hello" />
We have used a string resource, and the contents of strings.xml is
There is no need to change the MainActivity.kt file. The default code would do.
MainActivity. import androidx.appcompat.app.AppCompatActivity import android.os.Bundle class MainActivity : AppCompatActivity() { override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) setContentView(R.layout.activity_main) } }
textView.setTextColor(Color.parseColor("#ffffff"));textView.setTextColor(Color.rgb(200,0,0));textView.setTextColot(ContextCompat.getColor(context, R.color.your_color);)Change Text Color of TextView via XML Layout File
How to validate email address in Android with Kotlin?
Fix Android Emulator Kill Error When Running Your App
Explain Fragment Life Cycle
What is ANR? How to avoid and resolve it?
What are the notifications available in android?
What is Android Fragments?
How to install/ uninstall apk by command line ADB
FragmentPagerAdapter deprecated, Since API 27.1.0 FragmentPagerAdapter is deprecated.
How do I check in SQLite whether a table exists?
How to get an image resource by it's name in android?
Invoke-customs are only supported starting with android 0 --min-api 26
How to stop EditText focus at Activity startup in Android?
How to start a new activity on button click
How to Use Deprecated Handler() in Android - RRutors Guide
How to find Android Device UDID or unique ID?
Fix Error: Use JsonReader.setLenient(true) for Malformed JSON
Fix Play Store Rejection Due to SMS Permission - RRutors
Fix Behavior Subclass BottomSheetBehavior Exception - RRutors
Fix Duplicate Files in APK Build.gradle Issue - RRutors
What happens next when the device switches between portrait and landscape?
How to get a contact image using a phone number in android?
Decompile APK Files: How to Get Source Code - RRutors Guide
Hide/Disable soft keyboard on Activity launch: Android
How to convert DP to Pixel and Pixel to Dp?
Symmetric vs Asymmetric Encryption in Android Server - RRutors
ERR_ACCESS_DENIED in Android Webview with sdk 30
Set Activity to Fullscreen Mode in Android - RRutors
How to avoid multiple button click at same time in android?
What is Application?
How can i comment inside xml file in android studio?
What is "shared preferences" in Android ?
Check List for Generate Signed APK Android
How To Set Text Color Programmatically Android TextView?
Add Jar/Library Files as Dependency in Android Studio
Emulator: emulator: ERROR: Can't find 'Linux version ' string in kernel image file: Andr
How to get screen size (width,height) in Android?
Extract Date and Time from Long Type Variable - RRutors
What is the Different Between val and var in Kotlin?
What is Intent? What is the difference between an implicit intent and an explicit intent?
How to Get bitmap from drawable: Android