11

レイアウトのグラフィカル ビューで、下の画像のボタンから API 15 以下を選択すると、丸で囲まれたボタンのテキストが正しく表示されます。

ここに画像の説明を入力

API 17 を選択すると、xml コードは同じでもテキストがずれます。ボタンのパディングを変更しても役に立ちません。

ここに画像の説明を入力

これは Eclipse だけの問題ですか、それとも Android の新しいバージョンでこの置き換えられたテキストが表示される可能性はありますか?

これを修正するための回避策は何ですか?

XML コード:

<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=".HomeActivity" >

<LinearLayout
    android:id="@+id/linearLayout1"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:layout_alignParentTop="true"
    android:layout_margin="3dp" >

    <ImageView
        android:id="@+id/imageView1"
        android:layout_width="wrap_content"
        android:layout_height="100dp"
        android:src="@drawable/label" />
</LinearLayout>

<TextView
    android:id="@+id/textView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignLeft="@+id/linearLayout1"
    android:layout_below="@+id/linearLayout1"
    android:layout_marginTop="20dp"
    android:text="@string/about_title"
    android:textSize="20sp" />

<TextView
    android:id="@+id/textView2"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_alignLeft="@+id/textView1"
    android:layout_alignRight="@+id/linearLayout1"
    android:layout_below="@+id/textView1"
    android:layout_marginTop="5dp"
    android:text="@string/temp" />

<LinearLayout
    android:id="@+id/linearLayout2"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_alignLeft="@+id/textView2"
    android:layout_alignRight="@+id/textView2"
    android:layout_below="@+id/textView2"
    android:layout_marginTop="20dp"
    android:baselineAligned="false" >

    <Button
        android:id="@+id/button1"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:text="@string/news" />

    <Button
        android:id="@+id/button2"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:text="@string/tournaments" />

    <Button
        android:id="@+id/button3"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:text="@string/results" />
</LinearLayout>

4

4 に答える 4

10

android:gravity="center"役に立たなかった

日食を2回再起動しました。不思議なことに、最初の再起動では役に立ちませんでしたが、2 回目の再起動後は問題ないように見えました。また、デバイス上で正常に動作します。質問をお詫びします。質問を投稿する前に待っていたに違いありません。

于 2013-03-23T12:17:46.637 に答える
3

ボタンのデフォルトスタイルがAPI17で変更されたかどうかわからない...おそらく...

とにかく、追加android:gravity="center"することでこれを修正できるはずです。

于 2013-03-23T12:04:37.203 に答える
2

私はこの問題に直面したことを知りません。Eclipseを再起動してください..そして確認してください..

于 2013-03-23T12:14:19.397 に答える
0

追加android:gravity="center"することでこれを修正する必要があります

于 2013-03-23T12:08:44.213 に答える