This question is already exist in here. But I want to know this step by step. I pasted the dependence in gradle under dependencies.
compile 'com.android.support:appcompat-v7:25.3.1'
and than what to do. My xml code is here
<Button
android:id="@+id/button_not_working"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/imageViewGroup"
android:layout_marginTop="60dp"
android:paddingEnd="9dp"
android:layout_alignStart="@+id/imageViewGroup"
android:layout_alignEnd="@+id/imageViewGroup"
android:background="@drawable/button_background"
android:text="Drawable Tine not working"
android:textColor="@color/white"
android:textSize="@dimen/font_size_small"
android:textAlignment="center"
android:layout_marginBottom="10dp"
android:drawableEnd="@drawable/forword_arrow"
android:drawableTint="@color/white"
android:gravity="center"
/>
this is the picture
The color of the forward_arrow is not changing. There are several answer in here but want to know what to do step by step. That's it.