Android Studio Layout 관련 질문드립니다.

Android Studio Layout 관련 질문드립니다.

작성일 2022.05.19댓글 0건
    게시물 수정 , 삭제는 로그인 필요

안녕하세요

Android Studio[Java]를 공부하고 있습니다.

Image View 4개의 Corner를 Radius 값을 주어 둥글게 처리를 하고 싶습니다.

이미지는 Glide를 url의 이미지를 불러오고 있습니다.

이미지를 불러오면 아래의 이미지와 같이 모서리가 잘린 상태로 나옵니다.




현재 Layout code는 아래와 같습니다.

        <androidx.constraintlayout.widget.ConstraintLayout
            android:layout_width="0dp"
            android:layout_height="0dp"
            app:layout_constraintBottom_toTopOf="@+id/line_test1"
            app:layout_constraintEnd_toEndOf="@+id/line_test2"
            app:layout_constraintStart_toStartOf="@+id/line_test3"
            app:layout_constraintTop_toTopOf="@+id/line_test4">

            <androidx.cardview.widget.CardView
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                app:cardElevation="0dp"
                app:cardCornerRadius="30dp">

                <ImageView
                    android:id="@+id/iv_concert_poster"
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    android:scaleType="centerInside"/>

            </androidx.cardview.widget.CardView>

        </androidx.constraintlayout.widget.ConstraintLayout>


#android studio #android studio download #android studio 설치 #android studio koala #android studio jellyfish #android studio flutter #android studio gemini #android studio iguana #android studio copilot #android studio emulator

Android Studio에서 layout파일이...

... 처음 Android Studio를 실행해 보는데 참고하는 강의책과 달리 res파일에 layout이 존재하지 않아 질문... ui.theme package에 레이아웃 관련 코드가 있을겁니다....

Android Studio Webview관련 질문입...

... com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" tools:context="com.itam.hnc.MainActivity" tools...

Studio 에서 linear Layout 질문...

... 질문드립니다. 소스 첨부합니다! 도와주세요! * 추가 : 에러 부분은 2번째 Linear Layout에서 생깁니다..! <LinearLayout xmlns:android="http...

android studio 문제 질문 드립니다

... 막혀서 질문 드립니다. 일단 xml쪽 버튼 , 이미지 코드는 <ImageView android :layout_width ="wrap_content" android :layout_height ="wrap_content...

Android Studio 지도 앱 관련 질문

... 구현하고 싶은 기능이 있는데 가능한지 가능하면 어떤식으로 구현하면 되는지 질문드립니다. 지도 앱을 만들 예정이고, 위 사진 처럼 지도가 있고, 내 위치를...

Android Studio ImageButton onClick...

... https://debugdaldal.tistory.com/110 레이아웃 관련 코드는 이분 것을 참고하였습니다. 하여 현재 불러올 레이아웃의 구성 상태는 이렇게 LinearLayout 안에 ImageButton 을 3개...