如何获得我设计的axml页面的镜像?

时间:2018-02-05 21:52:27

标签: android xml xamarin xamarin.android

我正在制作一个应用程序,以便在Heads-Up-Display上获得反射输出。

由于反射将被反转,我需要在手机本身中反转视图以获得准确的HUD视图。

1 个答案:

答案 0 :(得分:2)

将顶级布局容器的X比例设置为-1

android:scaleX="-1"

或者如果您需要平行表面反射效果,请将scaleY设置为-1

enter image description here

实施例

<?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>