Infeasible
Status Update
Comments
jb...@google.com <jb...@google.com> #2
Yes I really approve
me...@gmail.com <me...@gmail.com> #3
I agree, the photo is way too small
jb...@google.com <jb...@google.com> #4
And When we make the Call to somebody the Photo is not shown unless the Caller Picks
the Phone, this is annoying too.
the Phone, this is annoying too.
[Deleted User] <[Deleted User]> #5
Yeah, bigger caller ID picture would be great, and probably more (selectable )
information, like group, company etc. (i sometimes want to know the person is in which
company)
information, like group, company etc. (i sometimes want to know the person is in which
company)
me...@gmail.com <me...@gmail.com> #6
Please make the caller ID picture bigger!
an...@gmail.com <an...@gmail.com> #7
Please make it bigger, 96x96px is very small, need to be bigger also in Google
Contacts, because after sync make it small again and too much compressed and blurry.
Contacts, because after sync make it small again and too much compressed and blurry.
op...@gmail.com <op...@gmail.com> #8
320x320 is what im thinkin!
wi...@gmail.com <wi...@gmail.com> #9
Just go fullscreen?
ag...@gmail.com <ag...@gmail.com> #10
I agree these, tiny Contact picture or silly. Make them Bigger
Description
always returns false and does not update the time stamp.
Also, the documentation for setLastModified is wrong. It should return a
boolean.
Sample Code:
public void testTime() {
Log.d(TAG,"Testing setLastModified");
try {
long time = new Date().getTime() - 10000;
java.io.File f = new File("/sdcard/timetest");
boolean r = f.createNewFile();
Log.d(TAG,"r1:"+r+" mtime:"+f.lastModified());
Log.d(TAG,"time:"+time);
r = f.setLastModified(time);
Log.d(TAG,"r2:"+r+" mtime:"+f.lastModified());
} catch (Exception e) {
e.printStackTrace();
}
}