1
동일한 레이아웃을 사용하여 동일한 코드를 4.1에서 실행하면 잘 작동하지만 21.0을 초과하면 작동하지 않고 이미지보기가 " 나는이 문제를 발견하고 지금은 이미지가 2dp
로 imageview
에서 고도를 넣어 표시됩니다버튼 및 이미지보기가있는 상대 레이아웃이 21.0 이상으로 작동하지 않음
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<Button
android:id="@+id/btn_select_pod"
style="@style/basic_button"
android:layout_width="match_parent"
android:background="@drawable/btn_selector"
android:text="Select POD Media " />
<ImageView
android:id="@+id/imageView"
android:layout_width="40dp"
android:layout_height="40dp"
android:layout_alignParentRight="true"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:focusable="true" />
</RelativeLayout>
21+에서 단추 스타일이 동일합니까? – Stefan
감사합니다. @oppoo 문제를 발견했습니다. –