2014-02-21 7 views
0

나는 framelayout을 가지고 있으며 전경을 설정했습니다. 모든 것은 괜찮습니다. 그러나 프레임 레이아웃 위에 텍스트 뷰를 선택하면 framelayout 전경 눈금이 키보드를 표시하여 변경됩니다. 내 코드는 다음과 같습니다키보드가 표시 될 때 안드로이드 framelayout 전경이 변경됨

`<?xml version="1.0" encoding="utf-8"?> 
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" 
android:layout_width="fill_parent" 
android:layout_height="fill_parent" 
android:foreground="@drawable/gol" 
android:foregroundGravity="center|center_horizontal" 
android:orientation="vertical" > 

<LinearLayout 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:orientation="vertical" > 

    <RelativeLayout 
     android:id="@+id/rlsearch" 
     android:layout_width="fill_parent" 
     android:layout_height="48dp" 
     android:layout_marginBottom="10dp" 
     android:background="@drawable/searchback" > 

     <Button 
      android:id="@+id/buttonSearch" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:layout_alignParentRight="true" 
      android:layout_centerVertical="true" 
      android:layout_marginRight="5dp" 
      android:background="@drawable/search" 
      android:focusable="false" 
      android:textSize="20sp" /> 

     <EditText 
      android:id="@+id/editTextSearch" 
      android:layout_width="fill_parent" 
      android:layout_height="wrap_content" 
      android:layout_alignParentLeft="true" 
      android:layout_centerVertical="true" 
      android:layout_marginLeft="5dp" 
      android:layout_marginRight="5dp" 
      android:layout_toLeftOf="@+id/buttonSearch" 
      android:background="@android:color/transparent" 
      android:hint="@string/HintSearch" 
      android:imeOptions="actionSearch" 
      android:lines="1" 
      android:singleLine="true" 
      android:textColor="@color/TextColor" 
      android:textColorHint="@color/HintColor" /> 

    </RelativeLayout> 

    <RelativeLayout 
     android:layout_width="fill_parent" 
     android:layout_height="fill_parent" > 

     <ImageView 
      android:id="@+id/imageView1" 
      android:layout_width="fill_parent" 
      android:layout_height="100dp" 
      android:scaleType="fitXY" 
      android:src="@drawable/up" /> 

     <ListView 
      android:id="@+id/DynamicListView" 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      android:layout_below="@id/imageView1" 
      android:cacheColorHint="#00000000" 
      android:divider="#00000000" 
      android:dividerHeight="10dp" 
      android:paddingBottom="10dp" 
      android:paddingLeft="10dp" 
      android:paddingRight="10dp" 
      android:paddingTop="10dp" > 
     </ListView> 
    </RelativeLayout> 
</LinearLayout> 

`

그래서 내 코드의 문제점은 무엇입니까? 감사

답변

0

매니페스트의 활동에 다음을 추가

android:windowSoftInputMode="adjustPan"

설명 : 소프트 키보드는 하나이 모드 (팬) 우리가 편집중인 필드를 스크롤하기로 설정할 수 있습니다 키보드 옆에보기로 또는 전체를 축소하도록 시도하는 배율 (기본값)으로 설정하여 전체 레이아웃이 키보드가 보이도록 조정할 수 있습니다.

+0

고마워요, 저에게 도움이되었습니다. u는 무엇을 android인지 설명 할 수 있습니다 : windowSoftInputMode = "adjustPan"? – mori

+0

내 설명 참조 편집 :) –