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 Generate signed apk with android studio
How to save activity State in Android?
What is ANR in android?
FragmentPagerAdapter deprecated, Since API 27.1.0 FragmentPagerAdapter is deprecated.
Google play store rejected my app due to SMS permission I removed SMS permission from the manifes
What is the difference between match_parent and fill_parent?
How to validate email address in Android with Kotlin?
How to get complete address from latitude and longitude?
What is Intent? What is the difference between an implicit intent and an explicit intent?
What is Context?
How to Get bitmap from drawable: Android
Key Points to remember while develop the Android Application.
What is the Different Between val and var in Kotlin?
Error: Use JsonReader.setLenient(true) to accept malformed JSON at line 1 column 1 path
How do i load image from drawable folder in Jetpack Compose?
What is NetworkOnMainThread Exception?
How to extract date and time from Long type variable in Kotlin on Android "
How do I generate random numbers in Dart?
Check List for Generate Signed APK Android
How to start a new activity on button click
What are Android Versions available?
How to find Android Device UDID or unique ID?
What is Android Fragments?
ERR_ACCESS_DENIED in Android Webview with sdk 30
Android Activity FullScreen - How to set activity to fullscreen mode in Android?
What is Android?
Hide/Disable soft keyboard on Activity launch: Android
How To Set Text Color Programmatically Android TextView?
Android FCM not receiving notifications when app is removed from background
How to copy database from assets folder in android using kotlin
How to install/ uninstall apk by command line ADB
INSTALL_FAILED_INVALID_APK: Split lib_slice_9_apk was defined multiple times. It is possible that th
Is There A Way To Get The Source Code From An APK File? (or) How to decompile apk?
What is ANR? How to avoid and resolve it?
Emulator: emulator: ERROR: Can't find 'Linux version ' string in kernel image file: Andr
Intent for Drive PDF Viewer - How to open PDF in Google Drive with intent
How to get a contact image using a phone number in android?
How to Exit android app on back pressed?
What is Application?
Duplicate files during packaging of APK” build.gradle issue: Android Studio