Last active
August 29, 2015 14:27
-
-
Save clamytoe/51343bfafc7eb2580acd to your computer and use it in GitHub Desktop.
HKUSTx: COMP107x Introduction to Mobile Application Development using Android
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"cells": [ | |
{ | |
"cell_type": "markdown", | |
"metadata": {}, | |
"source": [ | |
"# Assignment: Chat Client App\n", | |
"---\n", | |
"In this assignment, you will be implementing a chat client application's UI by extending the **Chat Client** exercise that you have just completed. The application should display incoming and outgoing messages on the UI with different layouts:\n", | |
"\n", | |
"* Incoming messages are displayed towards the left of the screen\n", | |
"* Outgoing messages are displayed towards the right of the screen\n", | |
"\n", | |
"We provide you with a pre-configured project along with two different layouts, **message.xml** and **mymessage.xml**, that you can use in the implementation of the assignment. The modification to the project involves adding in appropriate code in **MyArrayAdapter.java** at the location specified with the \"*//TODO*\" comments. To get you started, please download the [ChatClient.zip](http://w02.hkvu.hk/edX/COMP107x/w2/ChatClient.zip) file, unzip it and import the project into Android Studio.\n", | |
"\n", | |
"## Textual Instructions\n", | |
"---\n", | |
"The project is configured with automated test code to test your application. Please carry out the automated test using the same steps given in **Assignment: Time Greet Friend**." | |
] | |
} | |
], | |
"metadata": { | |
"kernelspec": { | |
"display_name": "Python 2", | |
"language": "python", | |
"name": "python2" | |
}, | |
"language_info": { | |
"codemirror_mode": { | |
"name": "ipython", | |
"version": 2 | |
}, | |
"file_extension": ".py", | |
"mimetype": "text/x-python", | |
"name": "python", | |
"nbconvert_exporter": "python", | |
"pygments_lexer": "ipython2", | |
"version": "2.7.6" | |
} | |
}, | |
"nbformat": 4, | |
"nbformat_minor": 0 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment