Fixed notifications bug in surname

git-svn-id: https://forja.rediris.es/svn/cusl6-swadroid/trunk@141 5bc14d19-1e4b-4ba2-aa50-860af135f48c
This commit is contained in:
Juan Miguel Boyero Corral 2011-11-22 22:12:47 +00:00
parent d3bcfc5789
commit f695c1c4c7
2 changed files with 15 additions and 5 deletions

View File

@ -2,7 +2,7 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android" <manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="es.ugr.swad.swadroid" package="es.ugr.swad.swadroid"
android:installLocation="auto" android:versionCode="12" android:versionName="0.3.6"> android:installLocation="auto" android:versionCode="12" android:versionName="0.3.6">
<application android:label="@string/app_name" android:icon="@drawable/ic_launcher_swadroid" android:debuggable="false"> <application android:label="@string/app_name" android:icon="@drawable/ic_launcher_swadroid" android:debuggable="true">
<activity android:name=".SWADMain" <activity android:name=".SWADMain"
android:label="@string/app_name" android:label="@string/app_name"
android:icon="@drawable/ic_launcher_swadroid" android:configChanges="keyboard|keyboardHidden|orientation" android:theme="@android:style/Theme.NoTitleBar"> android:icon="@drawable/ic_launcher_swadroid" android:configChanges="keyboard|keyboardHidden|orientation" android:theme="@android:style/Theme.NoTitleBar">

View File

@ -50,7 +50,7 @@ public class NotificationsCursorAdapter extends CursorAdapter {
@Override @Override
public void bindView(View view, Context context, Cursor cursor) { public void bindView(View view, Context context, Cursor cursor) {
long unixTime; long unixTime;
String type, sender, summaryText, contentText; String type, sender, senderFirstname, senderSurname1, senderSurname2, summaryText, contentText;
String[] dateContent; String[] dateContent;
Date d; Date d;
@ -98,9 +98,19 @@ public class NotificationsCursorAdapter extends CursorAdapter {
eventTime.setText(dateContent[1]); eventTime.setText(dateContent[1]);
} }
if(eventSender != null){ if(eventSender != null){
sender = cursor.getString(cursor.getColumnIndex("userFirstname")) + " " sender = "";
+ cursor.getString(cursor.getColumnIndex("userSurname1")) + " " senderFirstname = cursor.getString(cursor.getColumnIndex("userFirstname"));
+ cursor.getString(cursor.getColumnIndex("userSurname2")); senderSurname1 = cursor.getString(cursor.getColumnIndex("userSurname1"));
senderSurname2 = cursor.getString(cursor.getColumnIndex("userSurname2"));
//Empty fields checking
if(!senderFirstname.equals("anyType{}"))
sender += senderFirstname + " ";
if(!senderSurname1.equals("anyType{}"))
sender += senderSurname1 + " ";
if(!senderSurname2.equals("anyType{}"))
sender += senderSurname2;
eventSender.setText(sender); eventSender.setText(sender);
} }
if(location != null) { if(location != null) {