0

私は 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私の問題文が十分に明確であることを願っています!誰かがそれを行う方法についてのヒントを教えてもらえますか?

4

1 に答える 1

-1

さまざまなサイズのボタンを使用できることがわかりました。

于 2012-09-15T11:25:03.650 に答える