この9パッチ画像「Imageview3」があります
アクティビティに追加したい。赤い腕を画面の境界線と完全に一致させたいです。しかし、私が SCALE:fitXy を実行すると、ここで取得したものが得られる ので、機能しないように見えます。すべてのスケールを試し、画像を引き延ばそうとしましたが、収まりません。
これが私のコードです
<?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="wrap_content"
android:orientation="vertical" >
<FrameLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1" >
<ImageView
android:id="@+id/imageView2"
android:layout_width="324dp"
android:layout_height="fill_parent"
android:scaleType="centerCrop"
android:paddingTop="150dp"
android:paddingRight="0dp"
android:src="@drawable/diviseur" />
<ImageView
android:id="@+id/imageView3"
android:layout_width="407dp"
android:layout_height="wrap_content"
android:adjustViewBounds="true"
android:scaleType="fitXY"
android:src="@drawable/a1"
android:visibility="visible" />
</FrameLayout>
</LinearLayout>
助けてくれてありがとう