1

这似乎是一个微不足道的问题,但我发现在小布局中对齐 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>

背景图是9patch,所以有padding,但是文字没有居中,被截掉了。我会发布输出图像,但显然这被认为是垃圾邮件。我已经尝试了多种方法,但仍然存在。较小的文本确实可以改善图像的居中,但只有非常小的文本才能正确居中。知道为什么吗?

4

1 回答 1

0

试试这样

<LinearLayout
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:background="@drawable/button_bg_phone">
<TextView
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:scaleType="fitCenter"
                android:shadowColor="#88FFFFFF"
                android:shadowDx="0"
                android:shadowDy="1"
                android:shadowRadius="0.2"
                android:textColor="#6d5013"
                android:textSize="24sp" />

于 2012-12-11T17:26:24.597 回答