summaryrefslogtreecommitdiffstats
path: root/res/layout
diff options
context:
space:
mode:
authorDaniel Sandler <dsandler@android.com>2013-03-18 23:27:12 -0400
committerDaniel Sandler <dsandler@android.com>2013-03-19 00:12:41 -0400
commit95860491fe19b84c853fa7640be6d3c02dff2975 (patch)
tree81deb2607cec14515daf7dd0ff0af1dd4fa7d96c /res/layout
parent738b8715ab1ece5941a1a0ea931f697efad7fcb0 (diff)
downloadpackages_apps_Settings-95860491fe19b84c853fa7640be6d3c02dff2975.zip
packages_apps_Settings-95860491fe19b84c853fa7640be6d3c02dff2975.tar.gz
packages_apps_Settings-95860491fe19b84c853fa7640be6d3c02dff2975.tar.bz2
Add some extra info to the notification list rows.
Change-Id: Ie6ad130bd0e6daf8562c477f0297ba914d3f22d1
Diffstat (limited to 'res/layout')
-rw-r--r--res/layout/notification_log_row.xml149
1 files changed, 85 insertions, 64 deletions
diff --git a/res/layout/notification_log_row.xml b/res/layout/notification_log_row.xml
index 26e72cb..284e9ea 100644
--- a/res/layout/notification_log_row.xml
+++ b/res/layout/notification_log_row.xml
@@ -13,84 +13,105 @@
See the License for the specific language governing permissions and
limitations under the License.
-->
-<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@android:id/widget_frame"
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
- android:layout_toStartOf="@+id/divider"
- android:background="?android:attr/selectableItemBackground" >
+ android:paddingBottom="6dp"
+ android:paddingTop="6dp"
+ android:orientation="vertical"
+ android:background="?android:attr/selectableItemBackground"
+ >
- <!-- Dream icon -->
-
- <ImageView
- android:id="@+id/pkgicon"
- android:layout_width="@*android:dimen/status_bar_icon_size"
+ <RelativeLayout
+ android:layout_width="match_parent"
android:layout_height="@*android:dimen/status_bar_icon_size"
- android:layout_centerVertical="true"
- android:layout_marginBottom="6dp"
- android:layout_marginStart="0dp"
- android:layout_marginEnd="6dp"
- android:layout_marginTop="6dp"
- android:contentDescription="@null"
- android:adjustViewBounds="true"
- android:maxHeight="@*android:dimen/status_bar_icon_size"
- android:maxWidth="@*android:dimen/status_bar_icon_size"
- android:scaleType="fitCenter" />
+ android:layout_marginBottom="4dp"
+ >
- <ImageView
- android:id="@android:id/icon"
- android:layout_width="@*android:dimen/status_bar_icon_size"
- android:layout_height="@*android:dimen/status_bar_icon_size"
- android:layout_centerVertical="true"
- android:layout_toEndOf="@id/pkgicon"
- android:layout_marginBottom="6dp"
- android:layout_marginStart="0dp"
- android:layout_marginEnd="8dp"
- android:layout_marginTop="6dp"
- android:contentDescription="@null"
- android:adjustViewBounds="true"
- android:maxHeight="@*android:dimen/status_bar_icon_size"
- android:maxWidth="@*android:dimen/status_bar_icon_size"
- android:scaleType="fitCenter" />
+ <ImageView
+ android:id="@android:id/icon"
+ android:layout_width="@*android:dimen/status_bar_icon_size"
+ android:layout_height="@*android:dimen/status_bar_icon_size"
+ android:layout_centerVertical="true"
+ android:layout_toEndOf="@id/pkgicon"
+ android:layout_marginStart="0dp"
+ android:layout_marginEnd="8dp"
+ android:contentDescription="@null"
+ android:adjustViewBounds="true"
+ android:maxHeight="@*android:dimen/status_bar_icon_size"
+ android:maxWidth="@*android:dimen/status_bar_icon_size"
+ android:scaleType="fitCenter" />
- <!-- Dream caption -->
+ <TextView
+ android:id="@android:id/title"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:layout_centerVertical="true"
+ android:layout_toStartOf="@+id/timestamp"
+ android:layout_toEndOf="@android:id/icon"
+ android:ellipsize="end"
+ android:singleLine="true"
+ android:textAppearance="?android:attr/textAppearanceSmall"
+ android:textStyle="bold"
+ android:textAlignment="viewStart"
+ android:labelFor="@android:id/button2" />
+
+ <DateTimeView
+ android:id="@+id/timestamp"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_alignBottom="@android:id/widget_frame"
+ android:layout_alignParentEnd="true"
+ android:layout_alignTop="@android:id/widget_frame"
+ android:layout_centerVertical="true"
+ android:ellipsize="end"
+ android:singleLine="true"
+ android:textAppearance="?android:attr/textAppearanceSmall"
+ android:textAlignment="viewEnd"
+ />
+ </RelativeLayout>
<TextView
- android:id="@android:id/title"
+ android:id="@+id/extra"
android:layout_width="match_parent"
android:layout_height="wrap_content"
- android:layout_centerVertical="true"
- android:layout_toStartOf="@+id/timestamp"
- android:layout_toEndOf="@android:id/icon"
+ android:orientation="horizontal"
+ android:layout_marginStart="30dp"
android:ellipsize="end"
android:singleLine="true"
android:textAppearance="?android:attr/textAppearanceSmall"
android:textAlignment="viewStart"
- android:labelFor="@android:id/button2" />
+ />
+
+ <LinearLayout
+ android:layout_width="match_parent"
+ android:layout_height="@*android:dimen/status_bar_icon_size"
+ android:orientation="horizontal"
+ android:layout_marginStart="30dp"
+ >
- <!-- Dream radio button -->
+ <ImageView
+ android:id="@+id/pkgicon"
+ android:layout_width="@*android:dimen/status_bar_icon_size"
+ android:layout_height="@*android:dimen/status_bar_icon_size"
+ android:layout_marginStart="0dp"
+ android:layout_marginEnd="6dp"
+ android:contentDescription="@null"
+ android:adjustViewBounds="true"
+ android:maxHeight="@*android:dimen/status_bar_icon_size"
+ android:maxWidth="@*android:dimen/status_bar_icon_size"
+ android:scaleType="fitCenter" />
- <!--<RadioButton
- android:id="@android:id/button1"
- android:layout_width="wrap_content"
- android:layout_height="match_parent"
- android:layout_alignParentEnd="true"
- android:layout_centerVertical="true"
- android:duplicateParentState="true"
- android:clickable="false"
- android:focusable="false" />-->
+ <TextView
+ android:id="@+id/pkgname"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:layout_gravity="left|center_vertical"
+ android:ellipsize="end"
+ android:singleLine="true"
+ android:textAppearance="?android:attr/textAppearanceSmall"
+ android:textAlignment="viewStart"
+ />
- <DateTimeView
- android:id="@+id/timestamp"
- android:layout_width="wrap_content"
- android:layout_height="match_parent"
- android:layout_alignBottom="@android:id/widget_frame"
- android:layout_alignParentEnd="true"
- android:layout_alignTop="@android:id/widget_frame"
- android:layout_centerVertical="true"
- android:ellipsize="end"
- android:singleLine="true"
- android:textAppearance="?android:attr/textAppearanceSmall"
- android:textAlignment="viewEnd"
- />
-</RelativeLayout> \ No newline at end of file
+ </LinearLayout>
+</LinearLayout> \ No newline at end of file