마스터Q&A 안드로이드는 안드로이드 개발자들의 질문과 답변을 위한 지식 커뮤니티 사이트입니다. 안드로이드펍에서 운영하고 있습니다. [사용법, 운영진]

안드로이드 이미지뷰에 스크롤 관련

0 추천
<ScrollView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    tools:layout_editor_absoluteX="8dp"
    tools:layout_editor_absoluteY="8dp"
    tools:ignore="MissingConstraints">

    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="vertical">

        <ImageView
            android:id="@+id/imageView3"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            app:srcCompat="@mipmap/data4" />
    </LinearLayout>
</ScrollView>
이렇게 코드를 짜봤는데 스크롤은 보이는데 정작 필요한 이미지는 안보이는데 ... 어떻게 손을 봐야 되는건가요,,
익명사용자 님이 2018년 2월 22일 질문

1개의 답변

0 추천
app:srcCompat="@mipmap/data4" 를 app:src="@mipmap/data4" 로 바꿔보세요.

http://ammff.tistory.com/100
익명사용자 님이 2018년 2월 23일 답변
...