diff options
Diffstat (limited to 'res/layout')
-rw-r--r-- | res/layout/bookmarklistwidget.xml | 108 | ||||
-rw-r--r-- | res/layout/bookmarklistwidget_item.xml | 14 |
2 files changed, 84 insertions, 38 deletions
diff --git a/res/layout/bookmarklistwidget.xml b/res/layout/bookmarklistwidget.xml index 17aee1d..f3857f8 100644 --- a/res/layout/bookmarklistwidget.xml +++ b/res/layout/bookmarklistwidget.xml @@ -13,41 +13,87 @@ See the License for the specific language governing permissions and limitations under the License. --> - -<LinearLayout +<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" - android:orientation="vertical" - android:background="@null" - android:focusable="true" - android:clickable="true"> + android:paddingTop="4dip" + android:paddingBottom="20dip" + android:paddingLeft="12dip" + android:paddingRight="12dip"> <LinearLayout - android:id="@+id/header" android:layout_width="match_parent" - android:layout_height="wrap_content" - android:orientation="horizontal" - android:padding="8dip" - android:background="@color/bookmarkWidgetHeader"> - <ImageView - android:id="@+id/logo" - android:layout_width="32dp" - android:layout_height="32dp" - android:src="@mipmap/ic_launcher_browser" /> - <TextView - android:layout_width="wrap_content" + android:layout_height="match_parent" + android:orientation="vertical" + android:background="@drawable/bg_bookmark_widget_holo" + android:paddingLeft="0dip" + android:paddingRight="0dip" + android:paddingBottom="0dip"> + <LinearLayout + android:layout_width="match_parent" + android:layout_height="42dip" + android:orientation="horizontal" + android:background="@drawable/header_bg_bookmark_widget_holo" + android:layout_marginLeft="5dip" + android:layout_marginRight="5dip"> + <LinearLayout + android:id="@+id/header_browser" + android:layout_width="0dip" + android:layout_height="match_parent" + android:layout_weight="1" + android:orientation="horizontal" + android:paddingLeft="16dip" + android:focusable="true" + android:clickable="true" + android:background="@drawable/widget_header_selector"> + <ImageView + android:id="@+id/logo" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_gravity="center_vertical" + android:src="@drawable/ic_browser_bookmark_widget_holo" /> + <TextView + android:layout_width="0dip" + android:layout_height="wrap_content" + android:layout_weight="1" + android:layout_gravity="center_vertical" + android:text="@string/application_name" + android:textAppearance="?android:attr/textAppearanceMedium" + android:textStyle="bold" + android:paddingLeft="8dip" /> + </LinearLayout> + <ImageView + android:id="@+id/header_bookmarks" + android:layout_width="wrap_content" + android:layout_height="match_parent" + android:src="@drawable/btn_ic_bookmark_bookmark_widget_holo_dark" + android:scaleType="centerInside" + android:focusable="true" + android:clickable="true" + android:background="@drawable/widget_header_selector" + android:paddingLeft="8dip" + android:paddingRight="8dip" /> + </LinearLayout> + <ImageView android:background="@drawable/list_div_top_btm_bookmark_widget_holo" + android:layout_height="wrap_content" + android:layout_width="match_parent" + android:layout_marginLeft="2dip" + android:layout_marginRight="2dip" /> + <ListView + android:id="@+id/bookmarks_list" + android:layout_width="match_parent" + android:layout_height="0dip" + android:layout_weight="1" + android:background="@drawable/widget_background" + android:cacheColorHint="@android:color/transparent" + android:divider="@drawable/list_div_bookmark_widget_holo" + android:layout_marginLeft="5dip" + android:layout_marginRight="5dip" /> + <ImageView android:background="@drawable/list_div_top_btm_bookmark_widget_holo" android:layout_height="wrap_content" - android:layout_gravity="center_vertical" - android:text="@string/tab_bookmarks" - android:textAppearance="?android:attr/textAppearanceMedium" - android:paddingLeft="8dip" /> + android:layout_width="match_parent" + android:layout_marginLeft="2dip" + android:layout_marginRight="2dip" + android:layout_marginBottom="2dip" /> </LinearLayout> - <ListView - android:id="@+id/bookmarks_list" - android:layout_width="match_parent" - android:layout_height="match_parent" - android:background="@color/bookmarkWidgetItemBackground" - android:cacheColorHint="@color/bookmarkWidgetItemBackground" - android:dividerHeight="1px" - android:divider="@color/bookmarkWidgetDivider" /> -</LinearLayout> +</FrameLayout> diff --git a/res/layout/bookmarklistwidget_item.xml b/res/layout/bookmarklistwidget_item.xml index 9e41d39..039bc2c 100644 --- a/res/layout/bookmarklistwidget_item.xml +++ b/res/layout/bookmarklistwidget_item.xml @@ -18,23 +18,23 @@ xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/list_item" android:layout_width="match_parent" - android:layout_height="match_parent" - android:minHeight="@dimen/widgetItemMinHeight" + android:layout_height="48dp" android:orientation="horizontal" - android:padding="8dip" - android:background="@color/bookmarkWidgetFolderBackground"> + android:background="@drawable/row_activated_bookmark_widget_holo"> <ImageView android:id="@+id/thumb" android:src="@drawable/browser_thumbnail" - android:layout_height="24dp" - android:layout_width="24dp" + android:layout_height="32dp" + android:layout_width="32dp" android:layout_gravity="center_vertical" + android:layout_marginLeft="16dp" android:scaleType="fitXY"/> <TextView android:id="@+id/label" - android:layout_width="wrap_content" + android:layout_width="0dip" android:layout_height="wrap_content" android:layout_gravity="center_vertical" + android:layout_weight="1" android:textAppearance="?android:attr/textAppearanceSmall" android:paddingLeft="8dip" android:maxLines="1" |