নতুন অ্যান্ড্রয়েড কিটকাট (৪.৪) এবং এর মধ্যে ট্রান্সপ্লান্সেন্ট অ্যাকশনবার / নাবারের সাথে আমার সমস্যা আছে windowSoftInputMode="adjustResize"
।
সাধারনত ইনপুটমোডকে অ্যাডজাস্টের আকারে পরিবর্তন করা যায়, কীবোর্ড দেখানোর সাথে সাথে অ্যাপটিকে নিজেরাই পুনরায় আকার দেওয়া উচিত ... তবে এখানে এটি হবে না! আমি যদি স্বচ্ছ প্রভাবের জন্য লাইনগুলি মুছে ফেলি তবে পুনরায় আকারটি কাজ করছে।
সুতরাং যদি কীবোর্ডটি দৃশ্যমান হয় তবে আমার তালিকাগুলি এর নিচে রয়েছে এবং আমি শেষের কয়েকটি আইটেম অ্যাক্সেস করতে পারছি না। (কেবল কীবোর্ডটি ম্যানুয়ালি লুকিয়ে রেখে)
Andro আইডি
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="XYZ"
android:versionCode="23"
android:versionName="0.1" >
<uses-sdk
android:minSdkVersion="9"
android:targetSdkVersion="19" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/Theme.XYZStyle" >
<activity
android:name="XYZ"
android:label="@string/app_name"
android:windowSoftInputMode="adjustResize" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
মান-v19 / styles.xml
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="Theme.XYZStyle" parent="@style/Theme.AppCompat.Light">
<item name="android:windowTranslucentStatus">true</item>
<item name="android:windowTranslucentNavigation">true</item>
</style>
</resources>
fragment.xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/main"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<ListView
android:id="@+id/listView_contacts"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:clipToPadding="false"
android:divider="@null"
android:dividerHeight="0dp"
android:drawSelectorOnTop="true"
android:fastScrollAlwaysVisible="true"
android:fastScrollEnabled="true"
android:paddingBottom="@dimen/navigationbar__height" >
</ListView>
</RelativeLayout>
এটি ঠিক করার জন্য কেউ ধারণা?