如何在RTL布局中直接对图像使用“autoMirrored”属性

时间:2013-11-20 08:39:16

标签: android android-4.4-kitkat

在xml中使用“autoMirrored”标志,现在很容易在android 4.4 Kitkat中对drawable进行镜像。但有没有办法直接使用应用程序中使用的各种图像资源而不使用xml?

2 个答案:

答案 0 :(得分:2)

您可以通过Drawable.setAutoMirrored (boolean mirrored)电话执行此操作。 http://developer.android.com/reference/android/graphics/drawable/Drawable.html#setAutoMirrored(boolean)

答案 1 :(得分:0)

通过编程,您可以在Drawable上使用setAutoMirrored,例如:

function create()
{

    var un = document.getElementsByName("username")[0].value;
    var pass = document.getElementsByName("password")[0].value;
    if(un==null || un=='' || pass==null || pass=='')
    {
        alert('Enter user name and password');
    }
    else
    {
    UnArray.push(un);
    PsArray.push(pass);
    alert("New username is created");
    window.open("file:///C:/Users/mohammed.mohiddin/Desktop/Doctor.html");
    }
}