STUB
STUB
Hi, thanks for your reply. Yes it's not tablet. - It's on actual devices, I tried on Huawei P20 lite, Samsung Note 8, Samsung S6, Vivo. - I had checked...
Hi, I got the issue. There was one change in my app after that it was showing like this. I had changed my "screenOrientation" from "portrait" to "unspecified" in Manifest....
Hi, I have made below changes in my app: ---Manifest--- android:name=".ui.MainScreenActivity" android:label="@string/app_name" android:screenOrientation="unspecified" android:theme="@style/AppTheme" android:windowSoftInputMode="adjustPan" ---Acitivity Class--- protected void onCreate(@Nullable Bundle savedInstanceState) { super.onCreate(savedInstanceState); if (!Utils.isTablet(this)) { super.setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT); } }...