마스터Q&A 안드로이드는 안드로이드 개발자들의 질문과 답변을 위한 지식 커뮤니티 사이트입니다. 안드로이드펍에서 운영하고 있습니다. [사용법, 운영진]

이클립스 Layout와 실제 폰의 layout이 다른 이유

0 추천

 

왼쪽은 이클립스의 화면이고 오른쪽은 안드로이드(노트5)의 실제 앱 화면입니다.

왜 입력란 위에 검은색이 나타나는지 모르겠습니다.

이클립스상에서는 제목밑에 바로 입력란인데 실제 폰에서는 제목 검은색부분 다음에 입력란이 나타나는데 왜 이렇게 되는 건가요?

 

밑에는 XML파일입니다.

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="#ffffff"
        android:orientation="horizontal" >

        <EditText
            android:id="@+id/editText1"
            android:layout_width="wrap_content"
            android:layout_height="45dp"
            android:layout_weight="1"
            android:background="#ffffff"
            android:ems="10"
         
            android:inputType="number" >

            <requestFocus />
        </EditText>

        <ImageButton
            android:id="@+id/imagebutton2"
            android:layout_width="61dp"
            android:layout_height="match_parent"
            android:src="@drawable/number" />

        <Button
            android:id="@+id/button1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="SAVE" />
    </LinearLayout>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="326dp"
        android:layout_weight="0.47"
        android:orientation="vertical" >
    </LinearLayout>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="36dp"
        android:background="#777777"
        android:orientation="vertical" >

        <TextView
            android:id="@+id/Bluetooth_state"
            android:layout_width="match_parent"
            android:layout_height="30dp"
            android:gravity="center_horizontal"
            android:textColor="#ffffff" />

    </LinearLayout>

</LinearLayout>

쿠쿠부다스 (6,470 포인트) 님이 2016년 3월 23일 질문

1개의 답변

0 추천
액티비티의 타이틀 바 아닌가요?
모나미153 (17,540 포인트) 님이 2016년 3월 23일 답변
액션바였습니다 감사합니다 ㅎㅎ
...