सॉफ्टकबोर्ड सक्रिय होने पर मैंने लेआउट को समायोजित करने के लिए बहुत शोध किया है और मैंने इसे सफलतापूर्वक लागू किया है लेकिन समस्या तब आती है जब मैं android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
इसे अपनी गतिविधि टैग में प्रकट फ़ाइल में उपयोग करता हूं।
इसके लिए मैंने android:windowSoftInputMode="adjustPan|adjustResize|stateHidden"
विभिन्न विकल्पों के साथ उपयोग किया है लेकिन कोई भाग्य नहीं।
उसके बाद मैंने FullScreen
प्रोग्रामेटिक रूप से लागू किया और FullScreen
सभी के साथ काम करने के लिए विभिन्न लेआउट की कोशिश की ।
मैंने इन कड़ियों को संदर्भित किया है और इस मुद्दे से संबंधित कई पोस्ट देखी हैं:
http://android-developers.blogspot.com/2009/04/updating-applications-for-on-screen.html
http://davidwparker.com/2011/08/30/android-how-to-float-a-row-above-keyboard/
यहाँ xml कोड है:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout android:id="@+id/masterContainerView"
android:layout_width="fill_parent" android:layout_height="fill_parent"
android:orientation="vertical" xmlns:android="http://schemas.android.com/apk/res/android"
android:background="#ffffff">
<ScrollView android:id="@+id/parentScrollView"
android:layout_width="fill_parent" android:layout_height="wrap_content">
<LinearLayout android:layout_width="fill_parent"
android:layout_height="fill_parent" android:orientation="vertical">
<TextView android:id="@+id/setup_txt" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:text="Setup - Step 1 of 3"
android:textColor="@color/top_header_txt_color" android:textSize="20dp"
android:padding="8dp" android:gravity="center_horizontal" />
<TextView android:id="@+id/txt_header" android:layout_width="fill_parent"
android:layout_height="40dp" android:text="AutoReply:"
android:textColor="@color/top_header_txt_color" android:textSize="14dp"
android:textStyle="bold" android:padding="10dp"
android:layout_below="@+id/setup_txt" />
<EditText android:id="@+id/edit_message"
android:layout_width="fill_parent" android:layout_height="wrap_content"
android:text="Some text here." android:textSize="16dp"
android:textColor="@color/setting_editmsg_color" android:padding="10dp"
android:minLines="5" android:maxLines="6" android:layout_below="@+id/txt_header"
android:gravity="top" android:scrollbars="vertical"
android:maxLength="132" />
<ImageView android:id="@+id/image_bottom"
android:layout_width="fill_parent" android:layout_height="wrap_content"
android:layout_below="@+id/edit_message" />
</LinearLayout>
</ScrollView>
<RelativeLayout android:id="@+id/scoringContainerView"
android:layout_width="fill_parent" android:layout_height="50px"
android:orientation="vertical" android:layout_alignParentBottom="true"
android:background="#535254">
<Button android:id="@+id/btn_save" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_alignParentRight="true"
android:layout_marginTop="7dp" android:layout_marginRight="15dp"
android:layout_below="@+id/edit_message"
android:text = "Save" />
<Button android:id="@+id/btn_cancel" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_marginTop="7dp"
android:layout_marginRight="10dp" android:layout_below="@+id/edit_message"
android:layout_toLeftOf="@+id/btn_save" android:text = "Cancel" />
</RelativeLayout>
</RelativeLayout>
मैं चाहता हूं कि नीचे के 2 बटन ऊपर की ओर जाएं जब सॉफ्टकीबोर्ड तस्वीर में आता है।
android:windowSoftInputMode="adjustPan"
मुझे बताओ कि क्या यह काम करता है ..
adjustResize
और adjustPan
एक ही समय में, के javadoc से android.view.WindowManager.LayoutParams#SOFT_INPUT_ADJUST_RESIZE
: "यह {@ @ के साथ नहीं जोड़ा जा सकता है SOFT_INPUT_ADJUST_PAN}"