フルスクリーン表示

15 views
Skip to first unread message

Tatsumi Sato

unread,
Nov 22, 2013, 4:06:38 AM11/22/13
to android-deve...@googlegroups.com
Android2.3でアプリをフルスクリーン表示したいのですが、どの様な方法があるでしょうか?
下記の2つの方法では出来ませんでした。

1.MainActivity.javaを変更する
public class MainTate extends Activity{  
    /** Called when the activity is first created. */  
    @Override  
    public void onCreate(Bundle savedInstanceState) {  
        super.onCreate(savedInstanceState);  
        requestWindowFeature(Window.FEATURE_NO_TITLE);  
        setContentView(R.layout.main_tate);  
        getWindow().addFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN);  
    }  

2.AndroidManifest.xmlで定義する
<activity android:screenOrientation="landscape" android:name="MainYoko" android:theme="@android:style/Theme.NoTitleBar.Fullscreen" /> 
Reply all
Reply to author
Forward
0 new messages