Merge pull request #3267 from libliboom/develop
Removed screenOrientation attributes in manifest
This commit is contained in:
commit
539802ba04
|
@ -318,8 +318,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);
|
||||
|
|
|
@ -36,7 +36,7 @@
|
|||
android:cursorVisible="true"
|
||||
android:maxLines="1"
|
||||
android:inputType="text"
|
||||
android:imeOptions="actionNext"
|
||||
android:imeOptions="actionNext|flagNoFullscreen"
|
||||
android:nextFocusForward="@id/etxtPassword"/>
|
||||
|
||||
<EditText
|
||||
|
@ -50,7 +50,7 @@
|
|||
android:focusable="true"
|
||||
android:focusableInTouchMode="true"
|
||||
android:cursorVisible="true"
|
||||
android:imeOptions="actionGo"
|
||||
android:imeOptions="actionGo|flagNoFullscreen"
|
||||
android:imeActionLabel="@string/gpodnetauth_login_butLabel"/>
|
||||
|
||||
<Button
|
||||
|
|
|
@ -30,7 +30,8 @@
|
|||
android:layout_height="wrap_content"
|
||||
android:hint="@string/gpodnetauth_device_caption"
|
||||
android:layout_below="@id/txtvDescription"
|
||||
android:layout_margin="8dp"/>
|
||||
android:layout_margin="8dp"
|
||||
android:imeOptions="flagNoFullscreen"/>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/txtvDeviceID"
|
||||
|
@ -53,7 +54,8 @@
|
|||
android:layout_toEndOf="@id/txtvDeviceID"
|
||||
android:layout_alignParentRight="true"
|
||||
android:layout_alignParentEnd="true"
|
||||
android:layout_margin="8dp"/>
|
||||
android:layout_margin="8dp"
|
||||
android:imeOptions="flagNoFullscreen"/>
|
||||
|
||||
<Button
|
||||
android:id="@+id/butCreateNewDevice"
|
||||
|
|
Loading…
Reference in New Issue