인프런 커뮤니티 질문&답변

위시리님의 프로필 이미지
위시리

작성한 질문수

[왕초보편] 앱 8개를 만들면서 배우는 안드로이드 코틀린(Android Kotlin)

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

새로 LinearLayout을 하고 강의와 같이 ImageView를 작성했는데 사진이 뜨지를 않습니다.

작성

·

152

0

새로 LinearLayout을 하고 강의를 따라서 ImageView를 작성했는데 사진이 뜨지를 않습니다. 어디가 오류인지 잘 모르겠습니다ㅠㅠ

res/drawable 하위에 이미지 파일은 다 넣었습니다.

 

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    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"
    android:background="#5D985D"
    tools:context=".MainActivity">
    
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="200dp"
        android:layout_marginTop="100dp">

        <TextView
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:textSize="30sp"
            android:textColor="@color/black"
            android:layout_margin="20dp"
            android:gravity="center"
            android:textStyle="bold"
            android:text="인생은 주사위 한방"/>

    </LinearLayout>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="200dp">
        
        <ImageView
            android:src="@drawable/dice_1"
            android:layout_width="120dp"
            android:layout_height="120dp"/>

        <ImageView
            android:src="@drawable/dice_2"
            android:layout_width="120dp"
            android:layout_height="120dp"/>

    </LinearLayout>
    
</LinearLayout>

답변 1

0

개복치개발자님의 프로필 이미지
개복치개발자
지식공유자

맨 위에

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    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"
    android:background="#5D985D"
    tools:context=".MainActivity"
    android:orientation="vertical">
android:orientation="vertical"

을 추가해보시겠어요?

위시리님의 프로필 이미지
위시리
질문자

ImageView에 너무 집착해서 바로 전에 말씀하신 vertical 을 완전 놓치고 있었네요ㅠㅠ 감사합니다!!

개복치개발자님의 프로필 이미지
개복치개발자
지식공유자

파이팅입니다!

위시리님의 프로필 이미지
위시리

작성한 질문수

질문하기