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

simjuho1018님의 프로필 이미지
simjuho1018

작성한 질문수

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

주사위앱 완성 - 조건문(if else), random 함수

글씨가 잘려서 뜹니다.

작성

·

139

·

수정됨

1

이렇게 뜨고요 xml 소스코드는 다음과 같습니다.

 

 

 

 

<?xml version="1.0" encoding="utf-8"?>

<layout>
    <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="#008000"
        android:orientation="vertical"
        tools:context=".MainActivity">

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="200dp"
                android:layout_margin="100dp">

                <TextView
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    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"
            android:weightSum="2">

            <ImageView
                android:src="@drawable/dice_1"
                android:layout_width="120dp"
                android:layout_height="120dp"
                android:layout_weight="1"/>

            <ImageView
                android:src="@drawable/dice_1"
                android:layout_width="120dp"
                android:layout_height="120dp"
                android:layout_weight="1"/>

        </LinearLayout>

        <Button
            android:id="@+id/diceStartBtn"
            android:text="인생 고고"
            android:layout_width="match_parent"
            android:background="@color/black"
            android:textColor="@color/white"
            android:layout_height="50dp"
            android:layout_margin="50dp"/>

    </LinearLayout>

</layout>

답변 1

0

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

<LinearLayout
android:layout_width="match_parent"
android:layout_height="200dp"
android:layout_margin="100dp">

<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="30sp"
android:textColor="@color/black"
android:layout_margin="20dp"
android:gravity="center"
android:textStyle="bold"
android:text="인생은 주사위 한방에 가는거 아니겠습니까?"/>

</LinearLayout>

 

위의 부분에서 높이를 200dp로 지정해놔서 그런 것 같은데요.

wrap_content 혹은 250dp로 변경해서 해보시겠어요?

simjuho1018님의 프로필 이미지
simjuho1018

작성한 질문수

질문하기