旋转绘图无效
Rotate drawable has not effect
这里的起点是需要定期旋转矢量绘图,例如模拟时钟的指针。
我了解 vectorDrawable 资源不直接支持旋转属性。我可以将可绘制对象放入可旋转可绘制对象的组中,但在 运行 时间无法修改该旋转。
我看到很多解释旋转视图或画布以及旋转可绘制对象的帖子。后者似乎适合我的目的。
我在 Android Studio 3.5 的帮助下创建了一个新的 activity 以借助旋转绘图实现简单的旋转。
java/com.示例.myapplication/MainActivity:
package com.example.myapplication
import android.graphics.drawable.RotateDrawable
import androidx.appcompat.app.AppCompatActivity
import android.os.Bundle
import androidx.core.content.ContextCompat
class MainActivity : AppCompatActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)
val activity = this@MainActivity
val context = activity.applicationContext
val drawable = ContextCompat.getDrawable(context, R.drawable.rotation)
val rotation = drawable as RotateDrawable
rotation.setLevel(180)
}
}
res/layout/activity_main.xml:
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<ImageView
android:id="@+id/imageView2"
android:layout_width="0dp"
android:layout_height="0dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:srcCompat="@drawable/rotation" />
</androidx.constraintlayout.widget.ConstraintLayout>
res/drawable/rotation.xml:
<?xml version="1.0" encoding="utf-8"?>
<rotate xmlns:android="http://schemas.android.com/apk/res/android"
android:pivotX="50%" android:pivotY="50%"
android:fromDegrees="0" android:toDegrees="360"
android:drawable="@drawable/ic_launcher_foreground"/>
我希望setLevel函数可以用来旋转drawable,但是没有效果。
更改 rotation.xml 中的 fromDegrees 属性会按预期进行旋转。我不确定 <rotate>
的最大级别应该是 360 还是 10000,但这不是问题所在。
我错过了什么?这是一个细节,还是 rotateDrawable 完全是错误的方法?
相关问题:
- Rotating a drawable in Android
- Programmatically rotate drawable or view
- Is it possible to rotate a drawable in the xml description?
尝试使用 imageView2.setRotation(180)
而不是旋转可绘制对象。
这里的起点是需要定期旋转矢量绘图,例如模拟时钟的指针。
我了解 vectorDrawable 资源不直接支持旋转属性。我可以将可绘制对象放入可旋转可绘制对象的组中,但在 运行 时间无法修改该旋转。
我看到很多解释旋转视图或画布以及旋转可绘制对象的帖子。后者似乎适合我的目的。
我在 Android Studio 3.5 的帮助下创建了一个新的 activity 以借助旋转绘图实现简单的旋转。
java/com.示例.myapplication/MainActivity:
package com.example.myapplication
import android.graphics.drawable.RotateDrawable
import androidx.appcompat.app.AppCompatActivity
import android.os.Bundle
import androidx.core.content.ContextCompat
class MainActivity : AppCompatActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)
val activity = this@MainActivity
val context = activity.applicationContext
val drawable = ContextCompat.getDrawable(context, R.drawable.rotation)
val rotation = drawable as RotateDrawable
rotation.setLevel(180)
}
}
res/layout/activity_main.xml:
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<ImageView
android:id="@+id/imageView2"
android:layout_width="0dp"
android:layout_height="0dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:srcCompat="@drawable/rotation" />
</androidx.constraintlayout.widget.ConstraintLayout>
res/drawable/rotation.xml:
<?xml version="1.0" encoding="utf-8"?>
<rotate xmlns:android="http://schemas.android.com/apk/res/android"
android:pivotX="50%" android:pivotY="50%"
android:fromDegrees="0" android:toDegrees="360"
android:drawable="@drawable/ic_launcher_foreground"/>
我希望setLevel函数可以用来旋转drawable,但是没有效果。
更改 rotation.xml 中的 fromDegrees 属性会按预期进行旋转。我不确定 <rotate>
的最大级别应该是 360 还是 10000,但这不是问题所在。
我错过了什么?这是一个细节,还是 rotateDrawable 完全是错误的方法?
相关问题:
- Rotating a drawable in Android
- Programmatically rotate drawable or view
- Is it possible to rotate a drawable in the xml description?
尝试使用 imageView2.setRotation(180)
而不是旋转可绘制对象。