diff options
author | The Android Open Source Project <initial-contribution@android.com> | 2008-12-17 18:05:58 -0800 |
---|---|---|
committer | The Android Open Source Project <initial-contribution@android.com> | 2008-12-17 18:05:58 -0800 |
commit | d097a1880f2339705486d50cd8b33c6088fa9fa5 (patch) | |
tree | 711ec61755822f2bda1d4b2719691db2142ed607 /res/layout | |
parent | c8f00b61c600927ab404c84686d4472e9b527976 (diff) | |
download | packages_apps_trebuchet-d097a1880f2339705486d50cd8b33c6088fa9fa5.zip packages_apps_trebuchet-d097a1880f2339705486d50cd8b33c6088fa9fa5.tar.gz packages_apps_trebuchet-d097a1880f2339705486d50cd8b33c6088fa9fa5.tar.bz2 |
Code drop from //branches/cupcake/...@124589
Diffstat (limited to 'res/layout')
-rw-r--r-- | res/layout/application_list.xml | 70 | ||||
-rw-r--r-- | res/layout/live_folder_list.xml | 42 | ||||
-rw-r--r-- | res/layout/widget_search.xml | 12 |
3 files changed, 118 insertions, 6 deletions
diff --git a/res/layout/application_list.xml b/res/layout/application_list.xml new file mode 100644 index 0000000..230a951 --- /dev/null +++ b/res/layout/application_list.xml @@ -0,0 +1,70 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- +/** + * Copyright (c) 2008, The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +--> + +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="fill_parent" + android:layout_height="?android:attr/listPreferredItemHeight" + + android:paddingLeft="10dip" + + android:orientation="horizontal"> + + <ImageView android:id="@+id/icon" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_gravity="center_vertical" + + android:scaleType="center" /> + + <LinearLayout + android:layout_width="0dip" + android:layout_weight="1.0" + android:layout_height="fill_parent" + + android:paddingLeft="8dip" + android:paddingRight="8dip" + + android:orientation="vertical" + android:gravity="center_vertical"> + + <TextView android:id="@+id/name" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + + android:singleLine="true" + android:ellipsize="end" + + android:textAppearance="?android:attr/textAppearanceLarge" /> + + <TextView android:id="@+id/description" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + + android:layout_below="@id/name" + android:layout_alignLeft="@id/name" + + android:singleLine="true" + android:ellipsize="end" + + android:textAppearance="?android:attr/textAppearanceSmall" + android:textColor="?android:attr/textColorSecondary" /> + + </LinearLayout> + +</LinearLayout>
\ No newline at end of file diff --git a/res/layout/live_folder_list.xml b/res/layout/live_folder_list.xml new file mode 100644 index 0000000..1d32f88 --- /dev/null +++ b/res/layout/live_folder_list.xml @@ -0,0 +1,42 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- +/** + * Copyright (c) 2008, The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +--> + +<com.android.launcher.LiveFolder xmlns:android="http://schemas.android.com/apk/res/android" + android:orientation="vertical"> + + <Button + android:id="@+id/close" + android:background="@drawable/box_launcher_top" + android:gravity="left|center_vertical" + android:textSize="14sp" + android:textColor="#404040" + android:textStyle="bold" + android:layout_width="fill_parent" + android:layout_height="wrap_content" /> + + <ListView + android:id="@id/content" + android:layout_width="fill_parent" + android:layout_height="0dip" + android:layout_weight="1" + + android:cacheColorHint="#00000000" + android:background="@drawable/box_launcher_bottom" /> + +</com.android.launcher.LiveFolder> diff --git a/res/layout/widget_search.xml b/res/layout/widget_search.xml index 67ac345..4343e27 100644 --- a/res/layout/widget_search.xml +++ b/res/layout/widget_search.xml @@ -34,15 +34,15 @@ android:hint="@string/search_hint" android:focusableInTouchMode="false" android:singleLine="true" - + android:selectAllOnFocus="true" android:completionThreshold="1" /> - <Button - android:id="@+id/go" - android:layout_marginLeft="4dip" + <ImageButton android:id="@+id/search_go_btn" + android:layout_marginLeft="1dip" android:layout_width="wrap_content" android:layout_height="wrap_content" - android:text="@string/go"/> - + android:src="@android:drawable/ic_btn_search" + /> + </com.android.launcher.Search> |