これは些細な質問のように思えるかもしれませんが、小さなレイアウトで TextView を配置するのは面倒であることがわかりました。xml は次のとおりです。
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/button_bg_phone"
android:gravity="center_vertical"
android:orientation="horizontal">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/icon_phone" />
<TextView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_marginLeft="4dp"
android:shadowColor="#88FFFFFF"
android:shadowDx="0"
android:shadowDy="1"
android:shadowRadius="0.2"
android:textColor="#6d5013"
android:textSize="24sp" />
</LinearLayout>
背景画像は9パッチなのでパディングはありますが、文字は中央揃えにならず途切れています。出力画像を投稿しますが、どうやらそれはスパムと見なされます。私は複数のことを試しましたが、それでもこれは持続します。テキストを小さくすると画像の中央揃えが改善されますが、非常に小さなテキストのみが正しく中央揃えになります。理由はありますか?