Только для записи. У меня есть FrameLayout с TextView внутри, все содержимое в LinerLayout, которое будет заголовком моего виджета. Изначально у меня было это
<LinearLayout
[...]
<FrameLayout
android:id="@+id/widget"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="@color/colorPrimary">
<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="@string/app_name"
android:layout_margin="@dimen/activity_horizontal_margin"
android:textColor="@android:color/white"/>
</FrameLayout>
[...]
</LinearLayout>
Как и все здесь, у меня было сообщение "Проблема загрузки виджета". Решение было изменить это
android:layout_height="?attr/actionBarSize"
для этого:
android:layout_height="64dp"