Show/hide message
This commit is contained in:
parent
834d647011
commit
6c7204eae0
|
@ -102,6 +102,8 @@ public class VideoItemListActivity extends AppCompatActivity
|
||||||
} catch(Exception e) {
|
} catch(Exception e) {
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
}
|
}
|
||||||
|
View bg = findViewById(R.id.mainBG);
|
||||||
|
bg.setVisibility(View.GONE);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -200,6 +202,9 @@ public class VideoItemListActivity extends AppCompatActivity
|
||||||
setContentView(R.layout.activity_videoitem_list);
|
setContentView(R.layout.activity_videoitem_list);
|
||||||
StreamingService streamingService = null;
|
StreamingService streamingService = null;
|
||||||
|
|
||||||
|
View bg = findViewById(R.id.mainBG);
|
||||||
|
bg.setVisibility(View.VISIBLE);
|
||||||
|
|
||||||
try {
|
try {
|
||||||
//------ todo: remove this line when multiservice support is implemented ------
|
//------ todo: remove this line when multiservice support is implemented ------
|
||||||
currentStreamingServiceId = ServiceList.getIdOfService("Youtube");
|
currentStreamingServiceId = ServiceList.getIdOfService("Youtube");
|
||||||
|
|
Loading…
Reference in New Issue