1

当我更改线性布局背景图像的角半径时,子图像视图保持不变,宽度和高度相同。

角半径适用于线性布局,但不适用于子图像视图

 <LinearLayout
                 android:id="@+id/linearLayout3"
                 android:layout_width="fill_parent"
                 android:layout_height="fill_parent"
                 android:layout_marginLeft="15dp"
                 android:layout_marginRight="15dp"
                 android:layout_marginTop="10dp"
                 android:layout_marginBottom="15dp"
                 android:layout_weight="0.5"

                 android:tag="3"
                 android:orientation="vertical" >
                 <com.polites.android.GestureImageView
               android:id="@+id/imageView3"
               android:layout_width="fill_parent"
               android:layout_height="fill_parent" 
              android:scaleType="centerCrop" 
              gesture-image:min-scale="0.75"
              gesture-image:max-scale="10.0"
              android:src="@drawable/sample"/>
    </LinearLayout>
4

1 回答 1

0

将角半径添加到视图不会更改其子视图的角半径。您必须分别将该背景应用于子视图

于 2013-11-13T12:27:35.330 回答