aboutsummaryrefslogtreecommitdiffstats
path: root/res
diff options
context:
space:
mode:
authorDaniel Gultsch <daniel.gultsch@rwth-aachen.de>2014-01-24 10:55:59 +0100
committerDaniel Gultsch <daniel.gultsch@rwth-aachen.de>2014-01-24 10:55:59 +0100
commit860abebbca6ed0592ec4f05aec25eb7bf4475b2d (patch)
treea170cccff9f20f3c367ae394a0cdb9558201dbba /res
parent92465091c68fc82f914866c27f767015bc756fb6 (diff)
removed unneeded files
Diffstat (limited to 'res')
-rw-r--r--res/layout/activity_conversations.xml29
-rw-r--r--res/layout/frament_conversation.xml64
2 files changed, 0 insertions, 93 deletions
diff --git a/res/layout/activity_conversations.xml b/res/layout/activity_conversations.xml
deleted file mode 100644
index ae60de40..00000000
--- a/res/layout/activity_conversations.xml
+++ /dev/null
@@ -1,29 +0,0 @@
-<android.support.v4.widget.SlidingPaneLayout
- xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:id="@+id/slidingpanelayout">
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="336dp"
- android:layout_height="match_parent"
- android:orientation="vertical">
-
- <ListView
- android:id="@+id/list"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:divider="#b5b5b5"
- android:dividerHeight="1dp"
- android:background="#f9f9f9"
- />
-
-</LinearLayout>
-<LinearLayout
- android:id="@+id/selected_conversation"
- android:layout_width="400dp"
- android:layout_height="match_parent"
- android:layout_weight="1"
- android:background="#e5e5e5"
- android:orientation="vertical">
-</LinearLayout>
-</android.support.v4.widget.SlidingPaneLayout> \ No newline at end of file
diff --git a/res/layout/frament_conversation.xml b/res/layout/frament_conversation.xml
deleted file mode 100644
index 02fe1f90..00000000
--- a/res/layout/frament_conversation.xml
+++ /dev/null
@@ -1,64 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="#f9f9f9">
-
- <RelativeLayout
- android:id="@+id/textsend"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:layout_alignParentBottom="true"
- android:layout_alignParentLeft="true" >
-
- <EditText
- android:id="@+id/editText1"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignParentLeft="true"
- android:layout_toLeftOf="@+id/imageButton1"
- android:ems="10"
- android:inputType="textMultiLine"
- android:minLines="1"
- android:background="#ffffff"
- android:layout_marginTop="12dp"
- android:layout_marginBottom="12dp"
- android:layout_marginLeft="8dp"
- android:layout_marginRight="8dp">
- </EditText>
-
- <ImageButton
- android:id="@+id/imageButton1"
- android:layout_width="48dp"
- android:layout_height="48dp"
- android:layout_alignParentRight="true"
- android:layout_centerVertical="true"
- android:background="?android:selectableItemBackground"
- android:src="@drawable/ic_action_send_now" />
-
- </RelativeLayout>
-
- <ScrollView
- android:id="@+id/scrollView1"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:layout_above="@+id/textsend"
- android:layout_alignParentLeft="true"
- android:layout_alignParentTop="true"
- android:background="#e5e5e5" >
-
- <LinearLayout
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:background="#e5e5e5"
- android:orientation="vertical" >
-
- <TextView
- android:id="@+id/textView1"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="TextView" />
- </LinearLayout>
- </ScrollView>
-
-</RelativeLayout>