안녕하세요..
아래의 사진고 ㅏ같은 화면을 만들고 있는데 어디가 잘못되어서..
안나오는지 잘 모르겠어요 ㅠ ㅠ ..
Height 값도 wrap으로 주었는데 match로 준것처럼 아래로 쭈욱
늘어져 있고 .. 어떻게 해야할지 막막해용 ㅠ ㅠ
아래의 코드를 한번 첨부해 보았습니다..

<?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:orientation="vertical"
android:background="#e6ff00"
tools:context="ex.project3.MainActivity">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:background="#04ff00"
android:orientation="vertical"
>
<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
/>
<Button
android:layout_width="match_parent"
android:text="확인"
android:layout_height="match_parent"
/>
</LinearLayout>
</LinearLayout>