本来是内存溢出java.lang.OutOfMemoryError: Failed to allocate a 33177612 byte allocation with 16777120 free bytes and 22MB until OOM
然后我把图片放到mipmap-hdpi文件夹就没事了. 启动应用的速度也快了
然后我把图片放到mipmap-hdpi文件夹就没事了. 启动应用的速度也快了
2016-04-24
以下是来自nineoldandroid的消息
DEPRECATED
NineOldAndroids is deprecated. No new development will be taking place. Existing versions will (of course) continue to function. New applications should use minSdkVersion="14" or higher which has access to the platform animation APIs.
Thanks for all your support!
DEPRECATED
NineOldAndroids is deprecated. No new development will be taking place. Existing versions will (of course) continue to function. New applications should use minSdkVersion="14" or higher which has access to the platform animation APIs.
Thanks for all your support!
2016-04-16
已采纳回答 / kacent
http://developer.android.com/intl/zh-tw/reference/android/app/ActionBar.TabListener.html
2016-04-11
第三个View出现的情况主要是我们滑动到第三个,然后往回切成第二个的时候,第三个View设置的TranslationX 就是-getWidth()-getPageMargin()+0;(也就是offsetPixels=0 原因不懂的话,再仔细看一遍视频),那么这个View的大小也会变成MIN_SCALE 所以,当我们从第二个再滑动回第一个的时候。 就会出现那种情况,我们做测试,当我们不滑动到第三个,只滑动到第二个再滑动回第一个的时候,就不会出现第三个。
2016-03-30
所以验证了我们的猜想是正确的。然后因为他的位置被我们强制设置在了屏幕中央(mRight.setTranslationX(MIN_SCALE + (1 - MIN_SCALE) * offset)),大小也被变成原来的0.6倍mRight.setScaleY(MIN_SCALE + (1 - MIN_SCALE) * 0)。 所以我们只需要在setPagerTeansformer中做出判断。 判断,只要offset=0那么马上让 mScale = 0;mTran = 0;
也就是让我们的View进行一个(回位的操作).就能很好的避开老师视频中出现的bug
也就是让我们的View进行一个(回位的操作).就能很好的避开老师视频中出现的bug
2016-03-30