kakashilw

Results 16 issues of kakashilw

你好,首先感谢提供了这么好用的库。 请问这个库可以通过设置一行显示2个月吗?像如图这样: ![IMG](https://user-images.githubusercontent.com/71766/106416651-de238180-648c-11eb-93be-e1caee79c811.jpg)

你好 File f = new File(ctx.getCacheDir(), "ACache"); 改为了File f = new File(ctx.getFilesDir(), cacheName); 是因为getFilesDir比起getCacheDir更不容易被系统自动清空? 用getFilesDir的话 是否有被系统回收的危险?

- (NSArray *)tabBarItemsAttributesForTabBar { CGFloat firstXOffset = -12/2; NSDictionary *firstTabBarItemsAttributes = @{ //CYLTabBarItemTitle : @"首页", CYLTabBarItemImage : [UIImage imageNamed:@"home_normal"], /* NSString and UIImage are supported*/ CYLTabBarItemSelectedImage : @"home_highlight", /* NSString...

Q-A

1、像demo里的tab_home_animate.json等是作者在某个网站找的?还是自己用adoble的软件做的? 我们在项目中可以直接用吗? 2、这种json文件有没有比较简单方法生成,我搜了一下,要用Adobe的软件做,感觉比较复杂,有没有比较简单的方法实现?其实还是想要demo 里的效果,就是demo里的图片稍微换一下。

Q-A

你好,当uiscrollview里面有一个很长的uitextivew的时候,截取uiscrollview的时候,截图里面的uitextivew就显示不全了

经测试,这样可以跳转到vivo x9s这个app的管理页,不过不能管理app的推送通知的设置,不知谁知道如果调整到推送通知的管理页 Intent intent = new Intent(); intent.putExtra("packagename",context.getPackageName()); intent.putExtra("title","test"); //i管家包名 6.0有不相同的两款手机 intent.setComponent(ComponentName.unflattenFromString("com.iqoo.secure/.safeguard.SoftPermissionDetailActivity")); if (startSafely(context,intent)){ return; } intent.setComponent(ComponentName.unflattenFromString("com.vivo.permissionmanager/.activity.SoftPermissionDetailActivity")); if (startSafely(context,intent)){ return; }

你好 之前我问过一个曲线截图 然后 只有曲线 没有颜色的问题,在这个链接 [https://github.com/SunriseOYR/ORCharts/issues/6](url) 后来你这边通过 pod 2.0.8已经解决了,最近我发现当这个曲线上的点超过手机屏幕的时候,是带颜色的,然后点比较少,比如只有2,3个点的时候还是只有曲线,没有颜色。 我尝试修改了几处代码还是没有解决,不知你这边有什么好的方法可以彻底解决这个截图不带曲线颜色的问题吗?

https://github.com/xufeifandj/Acache 我看有个这个作者把 File f = new File(ctx.getCacheDir(), "ACache"); 改为了File f = new File(ctx.getFilesDir(), cacheName); 然后在说明里写的是“xff轻量级数据存储 修改来自 Michael Yang ,修改缓存路径,防止数据被清空” 用ctx.getFilesDir()是会让缓存的数据更安全一些吗?

你好 首先很感谢提供了这么好用的库 在使用这个的时候遇到一个问题 就是想把生成的折线图分享出去 但是这个折线图是可以滚动显示的,一页显示不全,比较常规的对view截图的方法只能截取到一部分 public Bitmap screenShot(View view) { Bitmap bitmap = Bitmap.createBitmap(view.getWidth(), view.getHeight(), Config.ARGB_8888); Canvas canvas = new Canvas(bitmap); view.draw(canvas); return bitmap; } 不知道你这边有没有对LineChartView截图的比较好的思路和方法。

你好,我看了你的示例代码,里面有把html转变成NSAttributedString的方法 NSAttributedString *attributeString = [NSAttributedString htmlString:html]; ...... cell.textLabel.attributedText = attributeString; 但是,如果html里面有图片,比如 要如何给这个图片添加点击事件呢?