do not use theme in uri activity
This commit is contained in:
parent
b7cadcf9f6
commit
97bc93aeb0
|
@ -59,8 +59,7 @@
|
|||
<activity
|
||||
android:name=".ui.UriHandlerActivity"
|
||||
android:label="@string/title_activity_start_conversation"
|
||||
android:launchMode="singleTop"
|
||||
android:theme="@android:style/Theme.Translucent.NoTitleBar">
|
||||
android:launchMode="singleTop">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.VIEW" />
|
||||
|
||||
|
|
|
@ -625,6 +625,7 @@ public class StartConversationActivity extends XmppActivity implements OnRosterU
|
|||
case R.id.action_scan_qr_code:
|
||||
Intent intent = new Intent(this, UriHandlerActivity.class);
|
||||
intent.setAction(UriHandlerActivity.ACTION_SCAN_QR_CODE);
|
||||
intent.addFlags(Intent.FLAG_ACTIVITY_NO_ANIMATION);
|
||||
startActivity(intent);
|
||||
return true;
|
||||
case R.id.action_hide_offline:
|
||||
|
|
Loading…
Reference in New Issue