जब भी सॉफ्टवेयर कीबोर्ड दिखाई देता है, यह बैकग्राउंड इमेज को आकार देता है। नीचे दिए गए स्क्रीनशॉट को देखें:
जैसा कि आप देख सकते हैं, पृष्ठभूमि एक तरह से निचोड़ा हुआ है। कोई भी इस पर प्रकाश डाल सकता है कि पृष्ठभूमि क्यों आकार बदलती है?
मेरा लेआउट इस प्रकार है:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/page_bg"
android:isScrollContainer="false"
>
<LinearLayout android:layout_height="wrap_content"
android:orientation="horizontal"
android:layout_width="fill_parent"
>
<EditText android:id="@+id/CatName"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:inputType="textCapSentences"
android:lines="1"
/>
<Button android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/save"
android:onClick="saveCat"
/>
</LinearLayout>
<ImageButton
android:id="@+id/add_totalk"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:background="@null"
android:src="@drawable/add_small"
android:scaleType="center"
android:onClick="createToTalk"
android:layout_marginTop="5dp"
/>
</LinearLayout>