我有一个非常简单的小部件,其布局如下:
<?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 ......)。相反,文本大小根本不会改变。
谁能告诉我问题出在哪里?
提前完成。