I tested emulators and real devices but as you can see there is no change between 40 dp and 40.2 dp! I'm working on a project with a very high font sensitivity and the issue is behaviour of android text engine.
Is there any way to prevent that?
Please help!
This is the code:
<?xml version="1.0" encoding="utf-8"?>
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:orientation="vertical"
        android:layout_width="match_parent"
        android:layout_height="match_parent">
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="SAMPLE TEXT"
            android:textSize="40dp" />
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="SAMPLE TEXT"
            android:textSize="40.2dp" />
    </LinearLayout>
The result:

 
     
    
