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
|
<activity
|
||||||
android:name=".activity.gpoddernet.GpodnetAuthenticationActivity"
|
android:name=".activity.gpoddernet.GpodnetAuthenticationActivity"
|
||||||
android:configChanges="orientation"
|
android:configChanges="orientation"
|
||||||
android:label="@string/gpodnet_auth_label"
|
android:label="@string/gpodnet_auth_label">
|
||||||
android:screenOrientation="portrait">
|
|
||||||
<intent-filter>
|
<intent-filter>
|
||||||
<action android:name=".activity.gpoddernet.GpodnetAuthenticationActivity"/>
|
<action android:name=".activity.gpoddernet.GpodnetAuthenticationActivity"/>
|
||||||
<category android:name="android.intent.category.DEFAULT"/>
|
<category android:name="android.intent.category.DEFAULT"/>
|
||||||
|
|
|
@ -104,10 +104,6 @@ public class GpodnetAuthenticationActivity extends AppCompatActivity {
|
||||||
return super.onOptionsItemSelected(item);
|
return super.onOptionsItemSelected(item);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
public void onConfigurationChanged(Configuration newConfig) {
|
|
||||||
}
|
|
||||||
|
|
||||||
private void setupLoginView(View view) {
|
private void setupLoginView(View view) {
|
||||||
final EditText username = view.findViewById(R.id.etxtUsername);
|
final EditText username = view.findViewById(R.id.etxtUsername);
|
||||||
final EditText password = view.findViewById(R.id.etxtPassword);
|
final EditText password = view.findViewById(R.id.etxtPassword);
|
||||||
|
|
Loading…
Reference in New Issue