
	1. 여러개의 모바일 화면이 뜸 ... ( 1개로 줄이고 싶어요 ㅠㅠ 이거 땜에 렉걸리구요 ㅠ)
	2. Layout 설정 하는데
	위에는 리스트가 배치되구 아래는 버튼이 배치되게 해야하는데
	Linearlayout > listview  > linearlayout > button button
	이런식으로 했는데 listview가 아래껄 안보이게 합니다.
	해결방법이 없을까요 ?..
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >
    
    <ListView
        android:id="@+id/listview"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="1" >
    </ListView>
    <Button
        android:id="@id/LangReturn"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:text="확인" />
    <Button
        android:id="@id/LangReturn"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:text="취소" />
</LinearLayout>