inflearn logo
강의

Course

Instructor

[Beginner Level] Learn Android Kotlin by Building 8 Apps

Making a RecyclerView

item들의 간격이 너무 크게 나옵니다

651

kk1343148615

3 asked

0

 

이렇게 너무 아이템들이 각각 크게 나오는데 이런경우는 뭐가 문제일까요?

 

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">

    <androidx.recyclerview.widget.RecyclerView
        android:id="@+id/rv"
        android:layout_height="match_parent"
        android:layout_width="match_parent"
         />

</androidx.constraintlayout.widget.ConstraintLayout>

위의 코드는 activitymain의 layout입니다

android kotlin firebase

Answer 2

2

wntjdgus991942

방금 저도 똑같은 상황이라 무엇이 문제였는지 몰랐는데

혹시 몰라 xml 파일을 보니 rv_item.xml에 LinearLayout 자체 height설정을 못했었네요 한번 확인해보세요!

0

bokchi

Acitivity 의 xml 파일 말고 item의 xml에서

layout_height 를 100dp 이런식으로 사이즈를 조절해보시겠어요?

잘 모르시겠으면 xml 코드를 공유해주세요~

0

kk1343148615

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <TextView
        android:id="@+id/rvItem"
        android:text="rv"
        android:textSize="20sp"
        android:layout_margin="20dp"
        android:layout_width="wrap_content"
        android:layout_height="100dp"/>

</LinearLayout>

layout_height 를 100dp로 조절한 코드입니다 그런데도 너무나도 크게 나오네요

0

bokchi

현재 화면을 보여주시겠어요?

주사위앱 소개 및 레이아웃 설정 문제

0

59

2

안드로이드 에뮬레이터가 실행이 안 되요...ㅠ

0

105

2

30 강 소스 좀 올려 주십시요

0

80

2

onBackPressed 함수가 동영상 하고 다르게 동작합니다.

0

89

2

ListView 초기 실행 안됩니다.

0

94

2

코딩을 완료하고난후 앱 실행시 자동 종료

0

71

2

datavinding에서 오류가 납니다.

0

51

1

안드로이드 스튜디오 버전 차이로 초기 empyt activity 선택하면 안됩니다.

0

108

2

context의 구별에 대하여

0

69

2

"프롤로그에서 ..." 오류 관련해 직전 질문에 대한 추가 질문입니다.

0

67

2

"프롤로그에서 콘텐츠가 허용되지 않습니다." 오류

0

156

3

해결완료

1

186

2

databinding 설정후 run하면 에러(해결)

0

222

2

databinding 설정 이후 실행시 에러

0

268

4

안드로이드 입문하는 사람입니다.

0

70

1

Firebase uid

0

75

3

activity_main 화면 다름

0

114

2

강의화면과 다른데 맞게진행되는것인가요...????

0

105

2

파이어베이스 질문

0

74

2

ActivityMainBinding에 오류가 납니다

0

133

2

선생님 onBackPressed 작동이 안되는거 같습니다

0

118

2

>app>res>layout 이 존재하지 않습니다.

0

119

2

안드로이드 스튜디오 미어캣 버전 사용 한글 깨짐

0

747

2

안드로이드 스튜디오 오류 발생 시 대처 방법은 요?

0

289

2