Infeasible
Status Update
Comments
am...@google.com <am...@google.com>
am...@gmail.com <am...@gmail.com> #2
Yes I really approve
ni...@gmail.com <ni...@gmail.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.
ni...@gmail.com <ni...@gmail.com> #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)
ar...@google.com <ar...@google.com> #6
Please make the caller ID picture bigger!
ar...@google.com <ar...@google.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.
[Deleted User] <[Deleted User]> #8
320x320 is what im thinkin!
[Deleted User] <[Deleted User]> #9
Just go fullscreen?
[Deleted User] <[Deleted User]> #10
I agree these, tiny Contact picture or silly. Make them Bigger
[Deleted User] <[Deleted User]> #11
Definitely agree that the photos are way too small for anyone to enjoy, Come on
Google..we know you can do way better then that.
Google..we know you can do way better then that.
[Deleted User] <[Deleted User]> #12
Current Icons are just far too small.
People are always asking why my caller ID pictures are so tiny.
Big turn off to some.
Much bigger Caller ID screen is a must. Apps that have tried get cut off by Google
sync. So even efforts by devs are getting hampered.
People are always asking why my caller ID pictures are so tiny.
Big turn off to some.
Much bigger Caller ID screen is a must. Apps that have tried get cut off by Google
sync. So even efforts by devs are getting hampered.
as...@gmail.com <as...@gmail.com> #13
Def agree. Contacts are way too small....need to be much bigger.
ka...@gmail.com <ka...@gmail.com> #14
Bigger contact pictures would make it easier to identify the caller and it looks much
cooler!
cooler!
ge...@gmail.com <ge...@gmail.com> #15
I totally agree. Contact pictures should be a bit larger in general, in caller ID form,
contact info form, etc...
contact info form, etc...
Description
Version used: 25.1.0
Devices/Android versions reproduced on: All
The DetailsFragment crashes when update background.
Steps to reproduce:
/**
* {@inheritDoc}
*/
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
BackgroundManager backgroundManager = BackgroundManager.getInstance(context);
backgroundManager.attach(context.getWindow());
Target mBackgroundTarget = new PicassoBackgroundManagerTarget(backgroundManager);
DisplayMetrics mMetrics = new DisplayMetrics();
context.getWindowManager().getDefaultDisplay().getMetrics(mMetrics);
Picasso.with(context)
.load(uri)
.centerCrop()
.resize(mMetrics.widthPixels, mMetrics.heightPixels)
.error(R.drawable.default_background)
.into(mBackgroundTarget);
}
Stack trace:
Caused by: java.lang.NullPointerException: Attempt to invoke virtual method 'void android.support.v17.leanback.app.BackgroundManager$TranslucentLayerDrawable.setWrapperAlpha(int, int)' on a null object reference
1android.support.v17.leanback.app.BackgroundManager$2.onAnimationUpdate(BackgroundManager.java:433)
2 android.animation.ValueAnimator.animateValue(ValueAnimator.java:1374)
3 android.animation.ValueAnimator.animationFrame(ValueAnimator.java:1298)
4 android.animation.ValueAnimator.doAnimationFrame(ValueAnimator.java:1339)
5 android.animation.ValueAnimator$AnimationHandler.doAnimationFrame(ValueAnimator.java:715)
6 android.animation.ValueAnimator$AnimationHandler.run(ValueAnimator.java:738)
7 android.view.Choreographer$CallbackRecord.run(Choreographer.java:767)
8 android.view.Choreographer.doCallbacks(Choreographer.java:580)
9 android.view.Choreographer.doFrame(Choreographer.java:549)
10 android.view.Choreographer$FrameDisplayEventReceiver.run(Choreographer.java:753)
11 android.os.Handler.handleCallback(Handler.java:739)
12 android.os.Handler.dispatchMessage(Handler.java:95)
13 android.os.Looper.loop(Looper.java:135)
14 android.app.ActivityThread.main(ActivityThread.java:5302)
15 java.lang.reflect.Method.invoke(Native Method)
16 java.lang.reflect.Method.invoke(Method.java:372)
17 com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:917)
18 com.android.internal.os.ZygoteInit.main(ZygoteInit.java:712)