GeekAPP

Results 17 comments of GeekAPP

> 看 [这句话](https://github.com/JessYanCoding/AndroidAutoSize/issues/249#issuecomment-577060593),使用 #249 的方案在 APP 启动时取消适配,然后在第一个页面 onCreate 前调用 AutoSize.checkAndInit(Application) 不行啊大佬,application取消适配后,然后welcome页面设置 AutoSize.checkAndInit(getApplication()); super.onCreate(savedInstanceState); 直接就不能适配了,后面的页面 怎么办

> 是 welcome 页面能适配,只是后面的页面不能适配;还是 welcome 页面以及后面的页面都不能适配。 > > 断点看看,是不是框架的启动慢于 super.onCreate(savedInstanceState); 了 > > 如果是框架的启动慢于 super.onCreate(savedInstanceState); ,看能不能提早调用 AutoSize.checkAndInit(getApplication()); 提前初始化框架,或者延后第一个页面的启动,或者框架设置 density 后,手动重绘当前页面的所有view 对 我就是延迟搞的

> 目标平台 12+ 需要在创建 PendingIntent 传入 [PendingIntent.FLAG_MUTABLE](https://developer.android.google.cn/reference/android/app/PendingIntent#FLAG_MUTABLE) 或者 [PendingIntent.FLAG_IMMUTABLE](https://developer.android.google.cn/reference/android/app/PendingIntent#FLAG_IMMUTABLE) > > [声明 PendingIntent 可变性](https://developer.android.google.cn/guide/components/intents-filters?hl=en#DeclareMutabilityPendingIntent) 怎么写,请指点~谢谢

> > > 目标平台 12+ 需要在创建 PendingIntent 传入 [PendingIntent.FLAG_MUTABLE](https://developer.android.google.cn/reference/android/app/PendingIntent#FLAG_MUTABLE) 或者 [PendingIntent.FLAG_IMMUTABLE](https://developer.android.google.cn/reference/android/app/PendingIntent#FLAG_IMMUTABLE) > > > [声明 PendingIntent 可变性](https://developer.android.google.cn/guide/components/intents-filters?hl=en#DeclareMutabilityPendingIntent) > > > > > > 怎么写,请指点~谢谢 > > 创建通知时报错,可以设置setEnableIndicator(false)不创建通知 ,或者在源码中的PendingIntent 挖槽 感谢大佬指点

不行啊 还是圆形 怎么设置圆角 求助

> 我在RecyclerView外面套了一个SwipeRefreshLayout,下拉并不会出现刷新的头。。。可否告知原因那?方便透露QQ沟通吗,谢谢~ 我也试过了,不行,下拉刷新和上拉加载都不行,作者会给方案吗?

me,too. how to solve it? ![Image](https://github.com/user-attachments/assets/246c6422-ea51-4f19-84b4-8aa9364a356e)

> 一切正常。现在是 2025 年 9 月 2 日。如果您像我一样使用 Windows,步骤是使用此脚本 > > # 在数组中定义模型 > $模型=@( “claude-3-5-sonnet-20240620”, “gpt-4o-2024-05-13”, “gpt-4-turbo-2024-04-09”, “gpt_4_vision”, “claude_3_sonnet” ) > > # 定义源模型 > $sourceModel =“llama3.2-vision” > >...

> 我添加到了`OPENAI_LOG=debug`compose.yml 的环境中以查看更多详细信息。我发现`openai.NotFoundError: Error code: 404 - {'error': {'message': 'model "gpt-4o-2024-11-20" not found, try pulling it first', 'type': 'api_error', 'param': None, 'code': None}}`。 > > 我执行了`ollama cp gpt-4o-2024-05-13 gpt-4o-2024-11-20`,现在它起作用了。 >...

大佬你的意思是修改这部分的内容,利用EncryptedDataSourceFactory2进行加解密吗 ``` ExoSourceManager.setExoMediaSourceInterceptListener(new ExoMediaSourceInterceptListener() { @Override public MediaSource getMediaSource(String dataSource, boolean preview, boolean cacheEnable, boolean isLooping, File cacheDir) { //如果返回 null,就使用默认的 MediaSource mediaSource = null; // mediaSource = (new ProgressiveMediaSource.Factory(...