私のアプリでは、TextView を 1 つ設定しましたが、下の画像のように、テキストの上下にスペースがいくつかあることに気付きました。
しかし、私の予想される結果はこれです:-
私はたくさんグーグルして、この回答リンクを見つけましたが、何も起こりません。
更新しました :
<TextView android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="50dp"
android:background="#484848"
android:textColor="#fff"
android:text="A"
android:layout_centerInParent="true"/>
これは、テキストを表示するために使用したタグです。
更新しました :
<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"
android:id="@+id/rl"
tools:context=".MainActivity" >
<TextView android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="50dp"
android:background="#484848"
android:textColor="#fff"
android:text="A"
android:paddingTop="0dp"
android:layout_centerInParent="true"/>
</RelativeLayout>
更新された画像: