0
2つのボタンを画面の中央に表示するようにしたいのですが、画面の下部に表示します。2つのボタンをレイアウトする方法
これまでの説明はここにあります。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<TableLayout android:layout_width="match_parent"
android:id="@+id/tableLayout2"
android:layout_gravity="center"
android:layout_height="fill_parent"
android:stretchColumns="@string/app_name">
<TableRow android:id="@+id/tableRow1"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<Button android:text="History"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:layout_width="fill_parent"
android:id="@+id/button1"
></Button>
<Button android:text="RecordSpending"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:id="@+id/button2"
android:gravity="center_vertical"></Button>
</TableRow>
</TableLayout>
</LinearLayout>
私は(関係なく、ユーザーが持っているもの電話解像度)..この全体のレイアウトは、画面の下部に表示したいん...
私は2つの列のサイズが等しくなるようにしたいと中央に水平に位置する底部。
あなたの質問はちょっと混乱しています。あなたが現在持っているものとあなたが望むものについてのスクリーンショットを貼ることができますか? – PravinCG
1)私は2つのボトムを中心にしたい。 2)全体を画面の一番下に置く –
画面下部に2つのボタンを配置するにはどうすればいいですか? –