在res——》values——》themes中新增下列程式碼
<style name="editTextStyle">
<!--選中時下劃線的顏色-->
<item name="colorControlActivated">@color/gray1</item>
<!--預設時下劃線的顏色-->
<item name="colorControlNormal">@color/black</item>
</style>
之後在需要需要使用的地方用
android:theme="@style/editTextStyle"
引用就好了