코드와 실행 화면입니다. 이미지가 자꾸중첩이 됩니다. 초보라서.. 알려주시면 감사하겠습니다.
버젼은 2.3-4.x입니다.
1,2는 중첩안되고 자리바꾸니 중첩안되는거 같은데 세번째껄 올리니 또 중첩이됩니다.
2개만 넣고했을때는 2,1이렇게 자리를 바꾸면 다시 중첩이 발생합니다. 1는 =cc1 2=cc입니다.
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.example.imav.MainActivity" >
<ImageView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:src="@drawable/cc1"
android:maxWidth="200px"
android:maxHeight="100px"
android:adjustViewBounds="true"
/>
<ImageView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:src="@drawable/cc"
/>
<ImageView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:src="@drawable/cc1"
/>
</RelativeLayout>
