2011-04-25 4 views
0

내 레이아웃에 바닥 글이 있습니다. 바닥 글의 위쪽에 EditText가 있습니다. 지금은 텍스트 편집 기본 키패드에 표시하려고하는 동안 표시됩니다. 바닥 글은 기본 키패드의 아래쪽에서 위쪽으로 이동합니다. . . 어떻게 해결할 수 있습니까? 레이아웃 코드는 다음과 같습니다. . . 이미지보기 고정 설명

</LinearLayout> 
<ImageView 
      android:src="@drawable/right_arrow_small" 
      android:layout_gravity="center_vertical|right" 
      android:layout_height="25dip" 
      android:layout_marginRight="7dip" 
      android:layout_width="10dip"> 
     </ImageView> 
<!-- For the Header Part --> 
<LinearLayout 
    xmlns:android="http://schemas.android.com/apk/res/android" 
    android:orientation="horizontal" 
    android:layout_width="fill_parent" 
    android:layout_height="45dip" 
    android:background="@drawable/header_gradient"> 
    <Button 
     android:id="@+id/backToMainMenuFromDonationForm" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:background="@drawable/backhome" 
     android:layout_gravity="center"/> 
    <TextView 
     android:text="Donation Form" 
     android:layout_height="fill_parent" 
     android:layout_width="240dip" 
     android:layout_gravity="center" 
     android:layout_marginLeft="5dip" 
     android:layout_marginTop="5dip" 
     android:layout_marginRight="5dip" 
     android:layout_marginBottom="5dip" 
     android:gravity="center" 
     android:textColor="#ffffff" 
     android:textSize="20dip"/> 
</LinearLayout>  
<!-- Header Part Finish --> 

<?xml version="1.0" encoding="utf-8"?> 
제발 도와주세요. . . 감사합니다. .

+0

PLZ 만이 활동의 ​​매니페스트의 코드를 붙여 넣습니다 .. 당신의 menifest의 활동에이 코드를 추가 ..? –

+0

다음은 위 레이아웃의 활동에 대한 Manifest 코드입니다. .

+0

내 대답보기 n 그것이 작동 여부를 알려주시겠습니까? –

답변

0

확인,

android:windowSoftInputMode="adjustResize|adjustPan" 

android:configChanges="keyboardHidden|orientation" 
+0

작동하지 않습니다. . . 여전히 내 바닥 글과 기타 레이아웃은 기본 키패드 레이아웃을 사용합니다. . . 그것을 고치는 방법 ?? –

+0

내 편집 대답을 참조하십시오 .. 또한 menifest –

+0

에서 두 번째를 추가하십시오. Sorry Boss, 아직 작동하지 않습니다. . . –