2015-10-07 59 views
0

我有一個佈局:Android鍵盤開啓時,保持背景圖像的完整和移動內容

<LinearLayout 
xmlns:tools="http://schemas.android.com/tools" 
xmlns:android.support.design="http://schemas.android.com/apk/res-auto" 
xmlns:android="http://schemas.android.com/apk/res/android" 
android:layout_width="match_parent" 
android:layout_height="match_parent" 
android:orientation="vertical" 
android:background="@drawable/activity_background" 
android:paddingLeft="@dimen/activity_horizontal_margin" 
android:paddingRight="@dimen/activity_horizontal_margin" 
android:paddingTop="@dimen/activity_vertical_margin" 
tools:context=".MainActivity"> 

<ImageView 
    android:layout_width="30dp" 
    android:layout_height="30dp" 
    android:src="@drawable/ic_content_clear_login_36dp" 
    /> 

<ScrollView 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:overScrollMode="never" 
    android:scrollbars="none" 
    > 

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

    <!--Activity widgets: Edittext etc all come here--> 

    </LinearLayout> 

</ScrollView> 



</LinearLayout> 

當軟鍵盤打開後,在根佈局設置背景圖片(LinearLayout)調整大小,如果android:windowSoftInputMode="stateVisible|adjustResize"設置在清單文件中,或者如果在清單文件中設置了android:windowSoftInputMode="stateVisible|adjustPan",則向上滾動。

我希望背景圖像保持原位並僅使內容(根佈局的子視圖)向上滾動。

任何指南?

回答

0

不要設置相對爲背景,添加的ImageView,並設置它的背景下,做如下

<ImageView 
     android:layout_width="fill_parent" 
     android:layout_height="fill_parent" 
     android:src="@drawable/mah_kewl_background" 
     android:scaleType="matrix" 
     /> 
相關問題