summaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/custom_notification_layout.xml
diff options
context:
space:
mode:
authorFup Duck <fupduck@sacknagel.com>2018-03-06 12:24:22 +0100
committerFup Duck <fupduck@sacknagel.com>2018-03-06 12:24:22 +0100
commit54e95a61bc553d985f6c55823da20985b6103aa0 (patch)
treed723bb57986dcc22766c9f5ebebd34a49cceeb02 /app/src/main/res/layout/custom_notification_layout.xml
parentd2a68f7f72de06b26aa6ab0a139512455ba0fe76 (diff)
cleanup - rename layout files
Diffstat (limited to 'app/src/main/res/layout/custom_notification_layout.xml')
-rw-r--r--app/src/main/res/layout/custom_notification_layout.xml48
1 files changed, 0 insertions, 48 deletions
diff --git a/app/src/main/res/layout/custom_notification_layout.xml b/app/src/main/res/layout/custom_notification_layout.xml
deleted file mode 100644
index e97fcbe2..00000000
--- a/app/src/main/res/layout/custom_notification_layout.xml
+++ /dev/null
@@ -1,48 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-
-<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- style="@android:style/TextAppearance.StatusBar.EventContent"
- >
-
- <ImageView
- android:id="@+id/image_icon"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_margin="20dp"
- android:scaleType="center"
- android:contentDescription="@string/app_name"
- tools:src="@drawable/ic_stat_vpn"
- tools:visibility="visible"
- />
-
-
- <LinearLayout
- android:id="@+id/content_layout"
- android:layout_width="wrap_content"
- android:layout_height="match_parent"
- android:layout_alignParentBottom="false"
- android:layout_toRightOf="@+id/image_icon"
- android:gravity="center_vertical"
- android:orientation="vertical">
-
- <TextView
- android:id="@+id/title"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:textStyle="bold"
- tools:text="Bitmask - Amsterdam"
- />
-
- <TextView
- android:id="@+id/message"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:maxLines="2"
- android:ellipsize="end"
- tools:text="Connecting to Provider... with a long message that doesn't fit into the two lines of the notification."
- />
- </LinearLayout>
-</RelativeLayout> \ No newline at end of file