Add missing spaces

This commit is contained in:
Martin Fietz 2018-01-21 13:07:28 +01:00
parent 86f6c001c1
commit db21463730
3 changed files with 4 additions and 4 deletions

View File

@ -44,7 +44,7 @@ public class DownloadAuthenticationActivity extends AppCompatActivity {
setTheme(UserPreferences.getTheme());
super.onCreate(savedInstanceState);
ActionBar actionBar = getSupportActionBar();
if(actionBar != null) {
if (actionBar != null) {
actionBar.hide();
}

View File

@ -129,7 +129,7 @@ public class OnlineFeedViewActivity extends AppCompatActivity {
setTheme(UserPreferences.getTheme());
super.onCreate(savedInstanceState);
ActionBar actionBar = getSupportActionBar();
if(actionBar != null) {
if (actionBar != null) {
actionBar.setDisplayHomeAsUpEnabled(true);
}
@ -146,7 +146,7 @@ public class OnlineFeedViewActivity extends AppCompatActivity {
|| TextUtils.equals(getIntent().getAction(), Intent.ACTION_VIEW)) {
feedUrl = (TextUtils.equals(getIntent().getAction(), Intent.ACTION_SEND))
? getIntent().getStringExtra(Intent.EXTRA_TEXT) : getIntent().getDataString();
if(actionBar != null) {
if (actionBar != null) {
actionBar.setTitle(R.string.add_feed_label);
}
} else {

View File

@ -368,7 +368,7 @@ public class VideoplayerActivity extends MediaplayerActivity {
if (vpa.videoControlsShowing) {
Log.d(TAG, "Hiding video controls");
ActionBar actionBar = vpa.getSupportActionBar();
if(actionBar != null) {
if (actionBar != null) {
actionBar.hide();
}
vpa.hideVideoControls();