skip to Main Content

Android Studio – Hide the BottomNavigationView under the keyboard

In AndroidManifest.xml announced android:windowSoftInputMode="adjustResize" <activity android:name="com.atfmedia.flopi.ui.MainActivity" android:screenOrientation="portrait" android:theme="@style/AppTheme" android:windowSoftInputMode="adjustResize" /> The lower menu is announced in main_activity.xml , as well as viewing fragments. When the chat_fragment.xml is displayed in the container and the keyboard appears, the BottomNavigationView rises above it.…

VIEW QUESTION

Android Studio – getting build error after updating ads dependencies to latest version

I am getting this build error while I am trying to run my application from Android Studio. Execution failed for task ':app:checkDebugDuplicateClasses'. > 1 exception was raised by workers: java.lang.RuntimeException: java.lang.RuntimeException: Duplicate class com.google.android.gms.internal.measurement.zzbs found in modules jetified-play-services-measurement-18.0.1-runtime.jar (com.google.android.gms:play-services-measurement:18.0.1) and…

VIEW QUESTION

Android Studio – Retrofit response body filed retun null, but logging interceptor showing full response in logact

I am using retrofit2.6.2 for api call. LoggingInterceptor showing full response in logcat but retrofit response body return null. I didn't figure out where is my problem. My json data schema is { "error":false, "msg":"Banner Found", "id":"9", "activity":"VipPremium1", "imageUrl":"https://1.bp.blogspot.com/-Kh3RQlJH7Xw/X-1mIPi7_HI/AAAAAAAAFME/Y2bCnU5odngcdDT83uC9QwUr7IGJdTDfACLcBGAsYHQ/s2616/COMPRESSED_IMG_1609393684674.jpg", "actionUrl":"https://www.youtube.com/watch?v=ukJX5ZgJec4",…

VIEW QUESTION
Back To Top
Search