
우와 같은 인터페이스를 작성하려고 하는데요,
인터페이스 xml 코드를 아래와 같이 작성하였어요,
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout
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"
tools:context="com.hbinno.onpay.LoginActivity"
android:background="@color/background">
<ScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:orientation="vertical"
android:weightSum="100">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0px"
android:background="#DD00DD"
android:layout_weight="50" />
<ImageView
android:layout_width="match_parent"
android:layout_height="0px"
android:layout_weight="10"
android:src="@drawable/image_first" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="10" />
<ImageView
android:layout_width="match_parent"
android:layout_height="0px"
android:layout_weight="10"
android:src="@drawable/image_second" />
</LinearLayout>
</ScrollView>
</FrameLayout>
그런데 실행결과가 아래와 같이 나오더라구요,

빈 LinearyLayout 태그는 자기 height를 못가지는가요?
고수님들 부탁드립니다.