android 图片压缩后比压缩前还大很多,不知道哪里出问题了
//图片压缩方法 public static Bitmap compressImage(Bitmap image) { ByteArrayOutputStream baos = new ByteArrayOutputStream(); image.compress(Bitmap.CompressFormat.JPEG, 100, baos);//质量压缩方……
xcode7 ios9 找不到rootviewcontroller
同样一份代码,用ios8的模拟器没问题,ios9会崩溃,报错:Application windows are expected to have a root view controller at the end of application launch 代码块: – (BOOL)application:(UIApplication *)app……
问一下在关于fragment的显示listview的问题
问一下, viewpage + fragment 实现如下图滑动的功能,在 viewpage中添加3个fragment 当要从数据库中取出数据后,在fragment 中把listview显示出来的时候出错 错误提示是: No enclosing instance of the type FActivity is accessible in scope 麻烦……
UIView animation 里面的center值变化了,但是KVO监听不到?
#import "ViewController.h" @interface ViewController (){ UIImageView *iv; } @end @implementation ViewController - (void)viewDidLoad { [super viewDidLoad]; iv = [……
怎么样在指定主题下显示想要的DatePickerDialog样式
android:theme=”@android:style/Theme.Light主题显示为: android:theme=”@android:style/Theme.Light.NoTitleBar”主题显示为: 本人想在android:theme=”@android:style/Theme.Light……
android 仿微信朋友圈评论,获取当前说说的整体高度
本人现在做一个相似微信朋友圈的功能,点击某一条说说,弹出键盘到被点击说说的下方。目前遇到的问题是,无法准确算出当前被点击说说的准确高度。 本人目前使用的方法如下: 屏幕总高度-键盘高度-回复的文本输入框-状态栏高度-标题栏高度-当前被点击项的高度=偏移量。 View listItem = circleAdapter.getView(currentPosit……