如何从Intent设置应用程序到全屏,而不是从主活动

时间:2012-04-23 05:41:25

标签: android android-layout android-intent

我的应用程序有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设置

2 个答案:

答案 0 :(得分:0)

检查这个

在您的网络视图活动中添加此内容

    Intent i=getIntent();
    if(i!=null)
    {
        requestWindowFeature(Window.FEATURE_NO_TITLE);
        getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
                WindowManager.LayoutParams.FLAG_FULLSCREEN);
    }

答案 1 :(得分:0)

修改MainActivity中的代码,如下所示

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

 intent.putExtra("isFullScreen", true);




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

put“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);


}

不会起作用