在color中定义基础色调: <color name="main_color">#A9A9A9</color>
再在style中加入自定义主题: <style name="normalStyle" parent="Theme.AppCompat.Light.NoActionBar"> <item name="colorAccent">@color/main_color</item> </style>
在manifests中用自定义主题: <application android:allowBackup="true" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:supportsRtl="true" ** android:theme="@style/normalStyle"**>