私はAndroidを初めて使っているので、まだGUiレイアウトではあまりよくありません。私は自分のアプリのためのGUIを構築しているだけで、私が望むように動作することはできません。必要なのは、画面の下部にある4つのボタンが水平に積み重ねられていることです。ボタンの上には、画面の残りの部分を埋めるSurfaceViewを配置しました。Android - GUIレイアウト
-----------------
- SurfaceView -
-----------------
--- --- --- ---
-B- -B- -B- -B-
--- --- --- ---
:残念ながら、このようなものになり
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<TableLayout
android:id="@+id/tableLayout1"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<TableRow
android:id="@+id/tableRow1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center" >
<SurfaceView
android:id="@+id/surfaceView1"
android:layout_width="fill_parent"
android:layout_height="fill_parent" />
</TableRow>
<TableRow
android:id="@+id/tableRow2"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center" >
<LinearLayout
android:id="@+id/linearLayout1"
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<Button
android:id="@+id/button2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="5dp"
android:text="Button" />
<Button
android:id="@+id/button3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="5dp"
android:text="Button" />
<Button
android:id="@+id/button4"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="5dp"
android:text="Button" />
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="5dp"
android:text="Button" />
</LinearLayout>
</TableRow>
</TableLayout>
</LinearLayout>
:私が得たclosesetはこのだった
-----------------
- -
- -
- -
- -
- SurfaceView -
- -
- -
- -
-----------------
--- --- --- ---
-B- -B- -B- -B-
--- --- --- ---
:結果はこのような何か(私はこれが明らかであると思います)でなければなりません
ありがとうございました。私はウェブサイトが私にできるようになるとすぐにこれを受け入れます。これらの属性の使い方を説明してください:android:layout_height = "0dp" android:layout_weight = "1" – Yoav
私の編集した回答をチェックしてください。 –
ありがとうございました.12 – Yoav