Android:textview大小如何匹配小部件大小?

时间:2015-01-15 15:18:08

标签: android textview widget size match

我有一个非常简单的小部件,其布局如下:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:background="@layout/myshape" >

    <TextView
         android:id="@+id/tvTime"
         android:layout_width="match_parent"
         android:layout_height="match_parent"
         android:gravity="center_horizontal|center_vertical"
         android:textColor="#FFFFFF" />
</LinearLayout>

据我所知,TextView应该与小部件一样大(例如小部件2x1,1x1 ......)。相反,文本大小根本不会改变。 谁能告诉我问题出在哪里? 提前完成。

0 个答案:

没有答案