Initial import

This commit is contained in:
Ziver Koc 2015-10-07 08:30:25 +00:00
commit 9fee448bbe
261 changed files with 4495 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

View file

@ -0,0 +1,13 @@
<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"
tools:context=".MainActivity">
<ListView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/userList" android:layout_alignParentTop="true" android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"/>
</RelativeLayout>
<!-- From: file:/C:/Users/ezivkoc/AndroidStudioProjects/ZEPchat/app/src/main/res/layout/activity_main.xml -->

View file

@ -0,0 +1,51 @@
<?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"
android:orientation="vertical">
<ListView
android:id="@+id/messageList"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:divider="@null"
android:dividerHeight="0dp"
android:layout_above="@+id/linearLayout">
</ListView>
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"></RelativeLayout>
<LinearLayout
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:id="@+id/linearLayout">
<EditText
android:id="@+id/newMessage"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:layout_toLeftOf="@+id/sendButton"
android:ems="10"
android:inputType="textMultiLine"
android:layout_weight="1" />
<Button
android:id="@+id/sendButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBottom="@+id/newMessage"
android:layout_alignParentEnd="true"
android:layout_alignParentRight="true"
android:text="Send" />
</LinearLayout>
</RelativeLayout><!-- From: file:/C:/Users/ezivkoc/AndroidStudioProjects/ZEPchat/app/src/main/res/layout/activity_messaging.xml -->

View file

@ -0,0 +1,51 @@
<?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="?android:attr/listPreferredItemHeight"
android:padding="6dip" >
<ImageView
android:id="@+id/icon"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_alignParentBottom="true"
android:layout_alignParentTop="true"
android:layout_marginRight="6dip"
android:src="@drawable/ic_launcher" />
<TextView
android:id="@+id/alias"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_alignWithParentIfMissing="true"
android:gravity="center_vertical"
android:singleLine="true"
android:text="Example application"
android:textSize="16sp"
android:layout_toRightOf="@id/icon"/>
<TextView
android:id="@+id/messageSum"
android:layout_width="fill_parent"
android:layout_height="20dip"
android:layout_below="@+id/alias"
android:layout_toRightOf="@id/icon"
android:ellipsize="marquee"
android:singleLine="false"
android:text="Description"
android:textSize="12sp"/>
<ImageView
android:id="@+id/imageView2"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:contentDescription="TODO"
android:src="@android:drawable/ic_media_play"
android:layout_alignTop="@+id/alias"
android:layout_alignRight="@+id/messageSum"
android:layout_alignEnd="@+id/messageSum"/>
</RelativeLayout><!-- From: file:/C:/Users/ezivkoc/AndroidStudioProjects/ZEPchat/app/src/main/res/layout/contact_list_item.xml -->

View file

@ -0,0 +1,23 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<LinearLayout
android:id="@+id/singleMessageContainer"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<TextView
android:id="@+id/singleMessage"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_margin="5dip"
android:background="@drawable/bubble_green"
android:paddingLeft="10dip"
android:text="Hello bubbles!"
android:textColor="@android:color/primary_text_light" />
</LinearLayout>
</LinearLayout><!-- From: file:/C:/Users/ezivkoc/AndroidStudioProjects/ZEPchat/app/src/main/res/layout/message_list_item.xml -->

View file

@ -0,0 +1,15 @@
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
tools:context=".MainActivity" >
<item android:id="@+id/action_scan"
android:title="@string/action_scan"
android:orderInCategory="100"
android:showAsAction="never" />
<item android:id="@+id/action_settings"
android:title="@string/action_settings"
android:orderInCategory="100"
android:showAsAction="never" />
</menu>
<!-- From: file:/C:/Users/ezivkoc/AndroidStudioProjects/ZEPchat/app/src/main/res/menu/menu_main.xml -->

View file

@ -0,0 +1,9 @@
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
tools:context="com.zepchat.app.MessagingActivity" >
<item android:id="@+id/action_settings"
android:title="@string/action_settings"
android:orderInCategory="100"
android:showAsAction="never" />
</menu>
<!-- From: file:/C:/Users/ezivkoc/AndroidStudioProjects/ZEPchat/app/src/main/res/menu/menu_messaging.xml -->

View file

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- From: file:/C:/Users/ezivkoc/AndroidStudioProjects/ZEPchat/app/src/main/res/values-v21/styles.xml -->
<eat-comment/>
<style name="AppTheme" parent="android:Theme.Material.Light">
</style>
</resources>

View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- From: file:/C:/Users/ezivkoc/AndroidStudioProjects/ZEPchat/app/src/main/res/values-w820dp/dimens.xml -->
<eat-comment/>
<dimen name="activity_horizontal_margin">64dp</dimen>
</resources>

View file

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- From: file:/C:/Users/ezivkoc/AndroidStudioProjects/ZEPchat/app/src/main/res/values/dimens.xml -->
<eat-comment/>
<dimen name="activity_horizontal_margin">16dp</dimen>
<dimen name="activity_vertical_margin">16dp</dimen>
<!-- From: file:/C:/Users/ezivkoc/AndroidStudioProjects/ZEPchat/app/src/main/res/values/strings.xml -->
<eat-comment/>
<string name="action_refresh">Refresh</string>
<string name="action_scan">Scan</string>
<string name="action_settings">Settings</string>
<string name="app_name">ZEPchat</string>
<string name="hello_world">Hello world!</string>
<string name="title_activity_messaging">MessagingActivity</string>
<!-- From: file:/C:/Users/ezivkoc/AndroidStudioProjects/ZEPchat/app/src/main/res/values/styles.xml -->
<eat-comment/>
<style name="AppTheme" parent="android:Theme.Holo.Light.DarkActionBar">
<!-- Customize your theme here. -->
</style>
</resources>

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

View file

@ -0,0 +1,13 @@
<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"
tools:context=".MainActivity">
<ListView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/userList" android:layout_alignParentTop="true" android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"/>
</RelativeLayout>
<!-- From: file:/C:/Users/ezivkoc/AndroidStudioProjects/ZEPchat/app/src/main/res/layout/activity_main.xml -->

View file

@ -0,0 +1,51 @@
<?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"
android:orientation="vertical">
<ListView
android:id="@+id/messageList"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:divider="@null"
android:dividerHeight="0dp"
android:layout_above="@+id/linearLayout">
</ListView>
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"></RelativeLayout>
<LinearLayout
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:id="@+id/linearLayout">
<EditText
android:id="@+id/newMessage"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:layout_toLeftOf="@+id/sendButton"
android:ems="10"
android:inputType="textMultiLine"
android:layout_weight="1" />
<Button
android:id="@+id/sendButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBottom="@+id/newMessage"
android:layout_alignParentEnd="true"
android:layout_alignParentRight="true"
android:text="Send" />
</LinearLayout>
</RelativeLayout><!-- From: file:/C:/Users/ezivkoc/AndroidStudioProjects/ZEPchat/app/src/main/res/layout/activity_messaging.xml -->

View file

@ -0,0 +1,51 @@
<?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="?android:attr/listPreferredItemHeight"
android:padding="6dip" >
<ImageView
android:id="@+id/icon"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_alignParentBottom="true"
android:layout_alignParentTop="true"
android:layout_marginRight="6dip"
android:src="@drawable/ic_launcher" />
<TextView
android:id="@+id/alias"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_alignWithParentIfMissing="true"
android:gravity="center_vertical"
android:singleLine="true"
android:text="Example application"
android:textSize="16sp"
android:layout_toRightOf="@id/icon"/>
<TextView
android:id="@+id/messageSum"
android:layout_width="fill_parent"
android:layout_height="20dip"
android:layout_below="@+id/alias"
android:layout_toRightOf="@id/icon"
android:ellipsize="marquee"
android:singleLine="false"
android:text="Description"
android:textSize="12sp"/>
<ImageView
android:id="@+id/imageView2"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:contentDescription="TODO"
android:src="@android:drawable/ic_media_play"
android:layout_alignTop="@+id/alias"
android:layout_alignRight="@+id/messageSum"
android:layout_alignEnd="@+id/messageSum"/>
</RelativeLayout><!-- From: file:/C:/Users/ezivkoc/AndroidStudioProjects/ZEPchat/app/src/main/res/layout/contact_list_item.xml -->

View file

@ -0,0 +1,23 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<LinearLayout
android:id="@+id/singleMessageContainer"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<TextView
android:id="@+id/singleMessage"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_margin="5dip"
android:background="@drawable/bubble_green"
android:paddingLeft="10dip"
android:text="Hello bubbles!"
android:textColor="@android:color/primary_text_light" />
</LinearLayout>
</LinearLayout><!-- From: file:/C:/Users/ezivkoc/AndroidStudioProjects/ZEPchat/app/src/main/res/layout/message_list_item.xml -->

View file

@ -0,0 +1,15 @@
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
tools:context=".MainActivity" >
<item android:id="@+id/action_scan"
android:title="@string/action_scan"
android:orderInCategory="100"
android:showAsAction="never" />
<item android:id="@+id/action_settings"
android:title="@string/action_settings"
android:orderInCategory="100"
android:showAsAction="never" />
</menu>
<!-- From: file:/C:/Users/ezivkoc/AndroidStudioProjects/ZEPchat/app/src/main/res/menu/menu_main.xml -->

View file

@ -0,0 +1,9 @@
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
tools:context="com.zepchat.app.MessagingActivity" >
<item android:id="@+id/action_settings"
android:title="@string/action_settings"
android:orderInCategory="100"
android:showAsAction="never" />
</menu>
<!-- From: file:/C:/Users/ezivkoc/AndroidStudioProjects/ZEPchat/app/src/main/res/menu/menu_messaging.xml -->

View file

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- From: file:/C:/Users/ezivkoc/AndroidStudioProjects/ZEPchat/app/src/main/res/values-v21/styles.xml -->
<eat-comment/>
<style name="AppTheme" parent="android:Theme.Material.Light">
</style>
</resources>

View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- From: file:/C:/Users/ezivkoc/AndroidStudioProjects/ZEPchat/app/src/main/res/values-w820dp/dimens.xml -->
<eat-comment/>
<dimen name="activity_horizontal_margin">64dp</dimen>
</resources>

View file

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- From: file:/C:/Users/ezivkoc/AndroidStudioProjects/ZEPchat/app/src/main/res/values/dimens.xml -->
<eat-comment/>
<dimen name="activity_horizontal_margin">16dp</dimen>
<dimen name="activity_vertical_margin">16dp</dimen>
<!-- From: file:/C:/Users/ezivkoc/AndroidStudioProjects/ZEPchat/app/src/main/res/values/strings.xml -->
<eat-comment/>
<string name="action_refresh">Refresh</string>
<string name="action_scan">Scan</string>
<string name="action_settings">Settings</string>
<string name="app_name">ZEPchat</string>
<string name="hello_world">Hello world!</string>
<string name="title_activity_messaging">MessagingActivity</string>
<!-- From: file:/C:/Users/ezivkoc/AndroidStudioProjects/ZEPchat/app/src/main/res/values/styles.xml -->
<eat-comment/>
<style name="AppTheme" parent="android:Theme.Holo.Light.DarkActionBar">
<!-- Customize your theme here. -->
</style>
</resources>

Binary file not shown.