2012-09-09 09:18:17 -07:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent">
|
|
|
|
|
|
|
|
<LinearLayout android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2019-03-20 15:52:14 -07:00
|
|
|
android:layout_alignParentStart="true"
|
2012-09-09 09:18:17 -07:00
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:orientation="vertical"
|
2019-03-20 15:52:14 -07:00
|
|
|
android:layout_marginStart="10dip">
|
2012-09-09 09:18:17 -07:00
|
|
|
<TextView android:id="@+id/title"
|
|
|
|
android:textAppearance="@style/NotificationTitle"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:ellipsize="marquee"
|
|
|
|
android:fadingEdge="horizontal"
|
2012-09-19 19:56:04 -07:00
|
|
|
android:text="@string/KeyCachingService_passphrase_cached"
|
2012-09-09 09:18:17 -07:00
|
|
|
/>
|
|
|
|
|
|
|
|
<TextView android:id="@+id/text2"
|
|
|
|
android:textAppearance="@style/NotificationText"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="-2dp"
|
|
|
|
android:layout_marginBottom="-2dp"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:fadingEdge="horizontal"
|
|
|
|
android:ellipsize="marquee"
|
2015-09-23 13:35:18 -07:00
|
|
|
android:text="@string/KeyCachingService_signal_passphrase_cached_with_lock"
|
2012-09-09 09:18:17 -07:00
|
|
|
/>
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<ImageView android:id="@+id/lock_cache_icon"
|
2014-06-24 19:20:16 -07:00
|
|
|
android:src="@drawable/icon_lock"
|
2012-09-09 09:18:17 -07:00
|
|
|
android:layout_width="64dp"
|
|
|
|
android:layout_height="64dp"
|
|
|
|
android:background="@drawable/notify_panel_notification_icon_bg_tile"
|
|
|
|
android:scaleType="center"
|
2019-03-20 15:52:14 -07:00
|
|
|
android:layout_alignParentEnd="true"
|
2012-09-09 09:18:17 -07:00
|
|
|
/>
|
2014-06-24 19:20:16 -07:00
|
|
|
|
2012-09-09 09:18:17 -07:00
|
|
|
</RelativeLayout>
|