I have difficulties developing 4×1 widget for Android.
This is the appprovider
<?xml version="1.0" encoding="utf-8"?> <appwidget-provider
xmlns:android="http://schemas.android.com/apk/res/android"
android:minWidth="294dp"
android:minHeight="72dp"
android:initialLayout="@layout/main" />
And here is the main.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="320dp"
android:layout_height="100dp"
android:gravity="center_vertical|center_horizontal"
android:orientation="horizontal">
//content goes here
</LinearLayout>
I could see the widget but the size is 4×2. I confuse why I cannot have 4×1 widget size?
Thanks
I don’t think it’s a newbie mistake.. I’ve had an appWidget that was 1×1 cell in size. I set it to 72dp x 72dp, and it was working fine.. But it seems like Google changed the widget dimension sizing formula from
to
So now the default size of my widget has to be 40dp x 40dp..
Source: http://developer.android.com/guide/practices/ui_guidelines/widget_design.html#anatomy_determining_size