Android layout 类似RealPlayer的Android应用程序布局

Android layout 类似RealPlayer的Android应用程序布局,android-layout,Android Layout,我是Android新手,我正在尝试设计我的Android应用程序,就像Android RealPlayer的界面一样,但我不知道如何设计 我真正想要设计的是:将页面分成4个相等的网格状部分,这样整个页面都会被覆盖,页面末尾不会留下额外的空白,就像RealPlayer界面一样 <?xml version="l.0" encoding="utf—8"?> <GridView xmlns:android="http://schemas.android.com/apk/res/andr

我是Android新手,我正在尝试设计我的Android应用程序,就像Android RealPlayer的界面一样,但我不知道如何设计

我真正想要设计的是:将页面分成4个相等的网格状部分,这样整个页面都会被覆盖,页面末尾不会留下额外的空白,就像RealPlayer界面一样

<?xml version="l.0" encoding="utf—8"?>
<GridView xmlns:android="http://schemas.android.com/apk/res/android“
    android:id=“@+id/gridview“
    android:layout_width="wrap_content"
    android:layout_height="fill_parent"
    android:layout_alignParentTop="true"
    android:layout_gravity="center"
    android:layout_weight="l.0"
    android:columnWidth="90dp"
    android:horizontalSpacing="l0dp"
    android:numColumns="2"
    android:orientation="horizontal"
    android:paddingTop="50dp"
    android:stretchMode=“columnWidth"
    android:verticalSpacing="l0dp" >

</GridView>

我尝试过操纵GridView属性,但似乎仅使用GridView元素是不可能的。我希望我的问题陈述足够清楚!有人能告诉我怎么做吗?

我发现可以使用不同大小的按钮