优化APk项目资源
方向不同的drawable
使用drawable的 rotate标签来控制。(20161031)如下
:::arrow_right.xml
<?xml version="1.0" encoding="utf-8"?>
<rotate xmlns:android="http://schemas.android.com/apk/res/android"
android:drawable="@drawable/ic_launcher"
android:fromDegrees="270"
android:toDegrees="270"//可不带
android:pivotX="50%"
android:pivotY="50%"
/>
hello
Last updated
Was this helpful?