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

김킥님의 프로필 이미지

작성한 질문수

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

레이아웃에 사진 삽입

에러 나옵니다ㅠㅠ

작성

·

421

0

안녕하세요 말씀해주신대로

<LinearLayout>

이미지뷰 3개

</LinearLayout>

<LinearLayout>

이미지뷰 3개

</LinearLayout>

이렇게 입력했는데 문제가 발생합니다.

problems에서 빨간색으로

Top level element is not completed 이렇게 나옵니다.
코드는 아래와 같습니다.

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

<LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"/>

    <ImageView
        android:src="@drawable/bts_1"
        android:layout_height="100dp"
        android:layout_width="100dp"/>

    <ImageView
        android:src="@drawable/bts_2"
        android:layout_height="100dp"
        android:layout_width="100dp"/>

    <ImageView
        android:src="@drawable/bts_3"
        android:layout_height="100dp"
        android:layout_width="100dp"/>
</LinearLayout>

<LinearLayout
android:layout_width="wrap_content"
android:layout_height=""/>

    <ImageView
    android:src="@drawable/bts_1"
    android:layout_height="100dp"
    android:layout_width="100dp"/>

    <ImageView
    android:src="@drawable/bts_2"
    android:layout_height="100dp"
    android:layout_width="100dp"/>

    <ImageView
    android:src="@drawable/bts_3"
    android:layout_height="100dp"
    android:layout_width="100dp"/>
</LinearLayout>

</LinearLayout>

 

답변 1

0

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

뭔가 잘못된 것 같은데... 제가 새롭게 작성했습니다.

 

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

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

        <ImageView
            android:src="@drawable/bts_1"
            android:layout_height="100dp"
            android:layout_width="100dp"/>

        <ImageView
            android:src="@drawable/bts_2"
            android:layout_height="100dp"
            android:layout_width="100dp"/>

        <ImageView
            android:src="@drawable/bts_3"
            android:layout_height="100dp"
            android:layout_width="100dp"/>

    </LinearLayout>


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

        <ImageView
            android:src="@drawable/bts_1"
            android:layout_height="100dp"
            android:layout_width="100dp"/>

        <ImageView
            android:src="@drawable/bts_2"
            android:layout_height="100dp"
            android:layout_width="100dp"/>

        <ImageView
            android:src="@drawable/bts_3"
            android:layout_height="100dp"
            android:layout_width="100dp"/>

    </LinearLayout>

    

</LinearLayout>
김킥님의 프로필 이미지
김킥
질문자

아 해결했습니다. 감사합니다. 제가 업로드한 코드에는

<LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"/>

이렇게 끝에 "/>"을 입력했었는데 잘못된 거였네요ㅠㅠ 감사합니다!!

김킥님의 프로필 이미지

작성한 질문수

질문하기