Skip to content
This repository has been archived by the owner on Aug 9, 2022. It is now read-only.

饺子想摇头

Nathen edited this page Sep 27, 2018 · 1 revision

功能:全屏时有标题,非全屏无标题

public class JzvdStdShowTitleAfterFullscreen extends JzvdStd {
    public JzvdStdShowTitleAfterFullscreen(Context context) {
        super(context);
    }

    public JzvdStdShowTitleAfterFullscreen(Context context, AttributeSet attrs) {
        super(context, attrs);
    }

    @Override
    public void setUp(JZDataSource jzDataSource, int screen) {
        super.setUp(jzDataSource, screen);
        if (currentScreen == SCREEN_WINDOW_FULLSCREEN) {
            titleTextView.setVisibility(View.VISIBLE);
        } else {
            titleTextView.setVisibility(View.INVISIBLE);
        }
    }
}

只需一步 继承JzvdStd,复写setUp函数,判断屏幕类型,全屏中显示titleTextView,非全屏隐藏titleTextView