我正在制作一个应用程序,以便在Heads-Up-Display上获得反射输出。
由于反射将被反转,我需要在手机本身中反转视图以获得准确的HUD视图。
答案 0 :(得分:2)
将顶级布局容器的X比例设置为-1
android:scaleX="-1"
或者如果您需要平行表面反射效果,请将scaleY
设置为-1
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleX="-1"
android:id="@+id/linearLayout1">
<Button
android:id="@+id/myButton"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/hello" />
</LinearLayout>