我不知道是否应该在这里问这个问题,但是有人遇到过这样的问题,即装有Android 7.0的华为设备存在一个错误,即如果您将rotationY属性设置为XML视图,则该视图将不会在运行时呈现?
XML代码:
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.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"
android:rotationY="180">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"
android:textSize="33sp"
android:textColor="#000"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</android.support.constraint.ConstraintLayout>
我没有配备Android 6.0的华为设备的屏幕截图,因为那是升级之前的,但我可以向您保证它能正常工作。根据收到的反馈,该问题在具有Android 7.0的其他华为设备上也仍然存在。我还使用了rotationX属性进行了测试,但仍然相同。有谁知道如何解决这个问题?