Resolves #3235. Refer to the changes.
- Remove android:screenOrientation="portrait" for rotating. - Remove override onConfigurationChanged function that does nothing.
This commit is contained in:
parent
c8fc1f90e0
commit
f1d5c00f3b
|
@ -337,8 +337,7 @@
|
|||
<activity
|
||||
android:name=".activity.gpoddernet.GpodnetAuthenticationActivity"
|
||||
android:configChanges="orientation"
|
||||
android:label="@string/gpodnet_auth_label"
|
||||
android:screenOrientation="portrait">
|
||||
android:label="@string/gpodnet_auth_label">
|
||||
<intent-filter>
|
||||
<action android:name=".activity.gpoddernet.GpodnetAuthenticationActivity"/>
|
||||
<category android:name="android.intent.category.DEFAULT"/>
|
||||
|
|
|
@ -104,10 +104,6 @@ public class GpodnetAuthenticationActivity extends AppCompatActivity {
|
|||
return super.onOptionsItemSelected(item);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onConfigurationChanged(Configuration newConfig) {
|
||||
}
|
||||
|
||||
private void setupLoginView(View view) {
|
||||
final EditText username = view.findViewById(R.id.etxtUsername);
|
||||
final EditText password = view.findViewById(R.id.etxtPassword);
|
||||
|
|
Loading…
Reference in New Issue