해결된 질문
작성
·
144
0
안녕하세요!
잘 나오던 그림들이 rvAdapter.notifyDataSetChanged()
를 추가하자 안 나옵니다. 뭐가 문젠가요?!
답변 1
0
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
android:layout_margin="5dp"
android:background="@drawable/radius"
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="220dp"
android:orientation="vertical"
xmlns:app="http://schemas.android.com/apk/res-auto">
<androidx.cardview.widget.CardView
android:layout_width="match_parent"
android:layout_height="120dp"
>
<ImageView
android:scaleType="fitXY"
android:id="@+id/rvImageArea"
android:layout_marginTop="10dp"
android:src="@drawable/ic_launcher_background"
android:layout_width="match_parent"
android:layout_height="120dp"/>
</androidx.cardview.widget.CardView>
<TextView
android:textStyle="bold"
android:textSize="20sp"
android:id="@+id/rvTextArea"
android:layout_marginTop="30dp"
android:gravity="center"
android:text="text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
</LinearLayout>
cardView의 크기가 문제인 것 같은데요
이렇게 바꿔보시겠어요?
헉.. 네네 됩니다.
이미지가 너무 컸어서 안 됐던 건가요?
아래는 원래 코드입니다.