From 8677f8dec81f2422e4d9a64187245f6bef8278f3 Mon Sep 17 00:00:00 2001 From: Thodoris1999 Date: Wed, 1 Aug 2018 12:09:08 +0300 Subject: [PATCH] EditorView init --- .../gr/thmmy/mthmmy/utils/EditorView.java | 10 +++++ app/src/main/res/layout/editor_view.xml | 45 +++++++++++++++++++ 2 files changed, 55 insertions(+) create mode 100644 app/src/main/java/gr/thmmy/mthmmy/utils/EditorView.java create mode 100644 app/src/main/res/layout/editor_view.xml diff --git a/app/src/main/java/gr/thmmy/mthmmy/utils/EditorView.java b/app/src/main/java/gr/thmmy/mthmmy/utils/EditorView.java new file mode 100644 index 00000000..dd710e6f --- /dev/null +++ b/app/src/main/java/gr/thmmy/mthmmy/utils/EditorView.java @@ -0,0 +1,10 @@ +package gr.thmmy.mthmmy.utils; + +import android.content.Context; +import android.widget.LinearLayout; + +public class EditorView extends LinearLayout { + public EditorView(Context context) { + super(context); + } +} diff --git a/app/src/main/res/layout/editor_view.xml b/app/src/main/res/layout/editor_view.xml new file mode 100644 index 00000000..7a6e4251 --- /dev/null +++ b/app/src/main/res/layout/editor_view.xml @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + \ No newline at end of file