Skaluj zasób rysunkowy w formacie XML (Android)

Próbuję skalować rysowanie do podwójnego rozmiaru oryginalnego. Próbuję to wykorzystać:Drawable Resouces. Mój obecny kod to:

Drawable:

<?xml version="1.0" encoding="utf-8"?>
<scale xmlns:android="http://schemas.android.com/apk/res/android"
    android:drawable="@drawable/ic_launcher"
    android:scaleHeight="80%"
    android:scaleWidth="80%" >

</scale>

Układ:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <ImageView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/ic_launcher" />

    <ImageView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/scale2" />

</LinearLayout>

Ale nic nie jest pokazane w drugim ImageView. Jak mogę to naprawić?

questionAnswers(2)

yourAnswerToTheQuestion