0

この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>

助けてくれてありがとう

4

4 に答える 4

0

取り外し android:scaleType="fitXY"て保管してandroid:layout_width="match_parent"ください。それを試してみてください。

于 2013-01-23T12:14:40.630 に答える
0

実際の画像の周りに白い境界線がないことを確認してください。のように、腕が画像の最後にあることを確認してください。

于 2013-09-20T16:26:06.710 に答える