Updated new_message, rollcall and users icons

git-svn-id: https://forja.rediris.es/svn/cusl6-swadroid/trunk@279 5bc14d19-1e4b-4ba2-aa50-860af135f48c
This commit is contained in:
Antonio Aguilera 2012-04-15 09:47:19 +00:00
parent 7b02cffa60
commit 9d8d73fc6b
14 changed files with 298 additions and 296 deletions

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.9 KiB

View File

@ -1,4 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<resources>
<string name="app_name">SWADroid</string>
<string name="serverName_preferences">Servidor</string>
@ -9,7 +9,7 @@
<string name="coursesModuleLabel">Asignaturas</string>
<string name="testsModuleLabel">Tests</string>
<string name="messagesModuleLabel">Enviar mensaje</string>
<string name="noticesModuleLabel">Publicar nuevo aviso</string>
<string name="noticesModuleLabel">Publicar aviso</string>
<string name="title_error_dialog">ERROR</string>
<string name="close_dialog">Cerrar</string>
<string name="set_preferences">Configuración</string>
@ -119,7 +119,8 @@
<string name="message_body_title">Mensaje</string>
<string name="notice_body_title">Aviso</string>
<string name="publishingNotice">Publicando aviso...</string>
<string name="noticePublished">Aviso publicado</string><string name="noticeSendError">Error al publicar el nuevo aviso</string>
<string name="noticePublished">Aviso publicado</string>
<string name="noticeSendError">Error al publicar el nuevo aviso</string>
<string name="sendMsg">Enviar</string>
<string name="cleanDatabaseMsg">Todos los datos de la base de datos han sido borrados</string>
<string name="shareBodyMsg">Estoy usando #SWADroid en mi Android para acceder a la

View File

@ -1,4 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<resources>
<string name="app_name">SWADroid</string>
<string name="serverName_preferences">Server</string>
@ -9,7 +9,7 @@
<string name="coursesModuleLabel">Courses</string>
<string name="testsModuleLabel">Tests</string>
<string name="messagesModuleLabel">Send message</string>
<string name="noticesModuleLabel">Publish new notice</string>
<string name="noticesModuleLabel">Publish notice</string>
<string name="title_error_dialog">ERROR</string>
<string name="close_dialog">Close</string>
<string name="set_preferences">Preferences</string>
@ -99,7 +99,8 @@
<string name="firstRunMsg">Before using the application for the first time you
must enter the user name and password for SWAD at the setup
screen.\n\nYou can access to the setup screen from the application
menu anytime.\n\nDo you want to open the configuration screen now?</string>
menu anytime.\n\nDo you want to open the configuration screen now?
</string>
<string name="initialDialogTitle">IMPORTANT</string>
<string name="upgradeMsg">Due to changes in the database all test questions
data have been deleted.\n\nSorry.</string>

View File

@ -295,7 +295,7 @@ public class SWADMain extends MenuExpandableListActivity {
map = new HashMap<String,Object>();
map.put(NAME, getString(R.string.messagesModuleLabel) );
map.put(IMAGE, getResources().getDrawable(R.drawable.msg));
map.put(IMAGE, getResources().getDrawable(R.drawable.newmsg));
messagesData.add(map);
map = new HashMap<String,Object>();
@ -312,7 +312,7 @@ public class SWADMain extends MenuExpandableListActivity {
//Attendance category
map = new HashMap<String,Object>();
map.put(NAME, getString(R.string.attendanceModuleLabel));
map.put(IMAGE, getResources().getDrawable(R.drawable.attendance));
map.put(IMAGE, getResources().getDrawable(R.drawable.rollcall));
attendanceData.add(map);
setListAdapter( new ImageExpandableListAdapter(

View File

@ -109,7 +109,7 @@ public class Attendance extends Module {
setContentView(R.layout.list_items);
image = (ImageView) this.findViewById(R.id.moduleIcon);
image.setBackgroundResource(R.drawable.attendance);
image.setBackgroundResource(R.drawable.rollcall);
text = (TextView) this.findViewById(R.id.moduleName);
text.setText(R.string.attendanceModuleLabel);