My text in my switch
defined in a xml file won't to change it's color stay black as the activity background. I tried with the textcolor option without any success. Any ideas?
My xml file
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#000000">
<LinearLayout
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hôte : "
android:textColor="#FFFFFF"/>
<EditText
android:background="#40FFFFFF"
android:id="@+id/hostname"
android:layout_width="200px"
android:layout_height="wrap_content"
android:textColor="#FFFFFF"/>
</LinearLayout>
<LinearLayout
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Utiliser Https : "
android:textColor="#FFFFFF"/>
<Switch
android:id="@+id/Switch"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textOn="on"
android:textOff="off"
android:textColor="#FFFFFF"
android:onClick="onToggleClicked"/>
</LinearLayout>
</LinearLayout>
For a switch
, add this to your styles.xml
file:
<style name="x" parent="@android:style/TextAppearance.Small">
<item name="android:textColor">#33CCFF</item>
</style>
Two options:
add this to your layout XML
file:
android:switchTextAppearance="@style/x"
add this to your Activity class after you've created an instance of your switch
:
switchInstance.setSwitchTextAppearance(getActivity(), R.style.x);
Note: path to styles.xml
file: Project Folder > res > values > styles.xml
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With