0

我的应用程序有 4 个选项卡,每个选项卡创建一个子视图(意图)现在我在每个意图中都有一个选项/菜单按钮的处理程序,菜单项是“切换全屏”这不起作用,因为意图不是父项视图,而包含 TabHost 的活动是父视图,现在我需要知道如何设置整个应用程序。到全屏模式或如何参考父活动通过它设置全屏模式。

这是我的代码片段

    public class MainActivity extends TabActivity {

    public void toggleFullScreen(){
    // This has the code to set App. to full screen
    }

    public void onCreate(Bundle savedInstanceState) {

        super.onCreate(savedInstanceState);
        Intent myIntent = new Intent(this, MywebviewActivity.class);
        tabHost.addTab(             
                tabHost.newTabSpec("SomeName")
                .setIndicator("Some Title")
                .setContent( myIntents ));

现在我需要从“MywebviewActivity”而不是我的 MainActivity 设置全屏模式

4

2 回答 2

0

检查这个

将此添加到您的 webview 活动中

    Intent i=getIntent();
    if(i!=null)
    {
        requestWindowFeature(Window.FEATURE_NO_TITLE);
        getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
                WindowManager.LayoutParams.FLAG_FULLSCREEN);
    }
于 2012-04-23T05:57:25.360 回答
0

修改您的代码MainActivity如下

Intent myIntent = new Intent(this, MywebviewActivity.class);

 intent.putExtra("isFullScreen", true);




现在在编写代码的onCreate()方法MywebviewActivity如下

放“setContentView(R.layout.main);” 此代码下面的方法如下:

public void onCreate(Bundle savedInstanceState) {
 super.onCreate(savedInstanceState);

    Intent intent=getIntent();
    boolean isfullScreen =  intent.getBooleanExtra("isFullScreen", false);


        if(isfullScreen )
        {
            requestWindowFeature(Window.FEATURE_NO_TITLE);
            getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
                    WindowManager.LayoutParams.FLAG_FULLSCREEN);
        }

setContentView(R.layout.main);


}

不会的

于 2012-04-23T16:01:57.603 回答