我有以下 xml 视图
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:gravity="center"
android:background="@color/black_overlay"
>
<TextView
android:id="@+id/TITLE"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="ver 0.0.1"
android:textAppearance="?android:attr/textAppearanceLarge" />
<Button
android:id="@+id/new_game"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="15dp"
android:text="@string/newGame" />
<Button
android:id="@+id/LoadGame"
android:layout_width="wrap_content"
android:layout_marginTop="15dp"
android:layout_height="wrap_content"
android:text="@string/loadGame" />
<Button
android:id="@+id/quit_game"
android:layout_width="wrap_content"
android:layout_marginTop="15dp"
android:layout_height="wrap_content"
android:text="@string/exitGame" />
</LinearLayout>
以及呈现此 xml 视图的主菜单类:
public class Main_Menu extends Activity{
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
requestWindowFeature(Window.FEATURE_NO_TITLE);
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FULLSCREEN);
getWindow().addFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON);
this.setContentView(R.layout.menu);
}
}
正确显示时看起来像这样:(使用运行 OS 2.3.4 的 lg g2x)
现在,当我在运行 OS 4.1.2 的 Galaxy S 3 上对其进行测试时,结果如下:
我不知道发生了什么...
任何帮助表示赞赏!
谢谢!