求monkeyrunner环境搭建大神指导

ToolBar无法隐藏,求解答
01:00:55&&&来源:&&&评论: 点击:
本帖最后由 Ever_simple 于
23:56:05 编辑
我在做视频播放器,全屏播放的时候会切换成竖屏,然后将videoview以外的控件都gone掉
其他都能隐藏了,唯独toolbar隐藏不了
贴上隐藏toobar代码,已经确认跑了里面的方法:
&private&void&switchTitleBar(boolean&show)&{
&&&&&&&&if&(show)&{
&&&&&&&&&&&&toolbar.setVisibility(View.VISIBLE);
&&&&&&&&&&&&Log.e("显示toolbar",&"显示toolbar");
&&&&&&&&}&else&{
&&&&&&&&&&&&toolbar.setVisibility(View.GONE);
&&&&&&&&&&&&Log.e("隐藏toolbar",&"隐藏toolbar");
我还尝试过&:
&&&&&getSupportActionBar().hide();&&
&&&&&用属性动画来隐藏
&&&&&设置padding
都没有效果。。。。就像把他隐藏起来,有这么费劲么。。。
布局代码:
&LinearLayout&xmlns:android="/apk/res/android"
&&&&xmlns:app="/apk/res-auto"
&&&&xmlns:tools="/tools"
&&&&android:layout_width="match_parent"
&&&&android:layout_height="match_parent"
&&&&android:orientation="vertical"&
&&&&!--&需要隐藏的toolbar--&
&&&&&android.support.v7.widget.Toolbar
&&&&&&&&android:id="@+id/tb_video_play"
&&&&&&&&android:layout_width="match_parent"
&&&&&&&&android:layout_height="wrap_content"
&&&&&&&&android:background="@color/deepskyblue"&
&&&&&&&&&TextView
&&&&&&&&&&&&android:id="@+id/tv_title"
&&&&&&&&&&&&android:layout_width="wrap_content"
&&&&&&&&&&&&android:layout_height="wrap_content"
&&&&&&&&&&&&android:layout_gravity="center"
&&&&&&&&&&&&android:text="标题"
&&&&&&&&&&&&android:textColor="@color/white"
&&&&&&&&&&&&android:textSize="20sp"&/&
&&&&&/android.support.v7.widget.Toolbar&
&&&&!--播放器布局&&没错就是它要全屏显示,却被toolbar踩在脚下。。。--&
&&&&&FrameLayout
&&&&&&&&android:id="@+id/video_layout"
&&&&&&&&android:layout_width="match_parent"
&&&&&&&&android:layout_height="210dp"
&&&&&&&&android:background="@android:color/black"&
&&&&&&&&&com.video.widget.UniversalVideoView.UniversalVideoView
&&&&&&&&&&&&android:id="@+id/videoview"
&&&&&&&&&&&&android:layout_width="match_parent"
&&&&&&&&&&&&android:layout_height="match_parent"
&&&&&&&&&&&&android:layout_gravity="center"
&&&&&&&&&&&&app:uvv_autoRotation="true"
&&&&&&&&&&&&app:uvv_fitXY="false"&/&
&&&&&&&&&com.video.widget.UniversalVideoView.UniversalMediaController
&&&&&&&&&&&&android:id="@+id/media_controller"
&&&&&&&&&&&&android:layout_width="match_parent"
&&&&&&&&&&&&android:layout_height="match_parent"
&&&&&&&&&&&&app:uvv_scalable="true"&/&
&&&&&/FrameLayout&
&/LinearLayout&
求大神来解答,不胜感激!!
频道总排行
频道本月排行

参考资料

 

随机推荐