0

レイアウトのボタンに問題があります。ボタンを追加するたびに、ボタンの中央の後にテキストが開始されます。

これが私が意味することです:

ここに画像の説明を入力

私は a を使用していますが、 、またはRelativelayoutを使用しても問題ありません。幅と高さは wrap_content に設定されます。Linearrelativetable

私はどんな種類の助けにも非常に感謝しています.

4

2 に答える 2

1

この android:gravity="left" を試してください

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity" >

<Button
    android:id="@+id/button"
    android:layout_width="fill_parent"
    android:layout_height="200dp"
    android:gravity="left"
    android:text="Button" />

于 2012-12-23T11:28:48.867 に答える