结果
所需
我正在尝试获得所需的体验,其中文本位于文本视图的中间,但没有成功,你能帮忙我该怎么办?
(注意:当我将此属性放到 textview 本身时,它可以工作,但不能在 style.xml 中使用 - 我需要在样式 xml 中管理重力问题,因为我的布局中有太多的行和列)
样式.xml
<style name="Normal">
<item name="android:textSize">15sp</item>
<item name="android:gravity">center</item>
</style>
my_layout.xml
<TableRow
android:id="@+id/tableRow1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="5dip" >
<TextView
android:id="@+id/textView1"
android:layout_weight="1"
android:text="Column 1"
android:textAppearance="@style/Normal" />
<TextView
android:id="@+id/textView2"
android:layout_weight="1"
android:text="Column 2"
android:textAppearance="@style/Normal" />
</TableRow>
[编辑]: textSize 影响 apperience