Add missing spaces
This commit is contained in:
parent
86f6c001c1
commit
db21463730
|
@ -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();
|
||||
}
|
||||
|
||||
|
|
|
@ -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 {
|
||||
|
|
|
@ -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();
|
||||
|
|
Loading…
Reference in New Issue