V2EX ssccyy 的所有回复 第 1 页 / 共 2 页
V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX    ssccyy    全部回复第 1 页 / 共 2 页
回复总数  33
1  2  
212 天前
回复了 ssccyy 创建的主题 WATCH 求助 ios 13.3 怎么链接 watch 10
解决方案: 升级了 ios 18 , 使用感受卡顿一些, 电量掉很快, 过阵子换手机, 不研究了, 谢谢各位大佬的分享, 结贴
213 天前
回复了 ssccyy 创建的主题 WATCH 求助 ios 13.3 怎么链接 watch 10
@swztms 暂时没有
213 天前
回复了 ssccyy 创建的主题 WATCH 求助 ios 13.3 怎么链接 watch 10
213 天前
回复了 ssccyy 创建的主题 WATCH 求助 ios 13.3 怎么链接 watch 10
@MacsedProtoss 好像买了首发就没更新过了, 还是更新了一次忘记了, 暂时没什么问题 所以还不想更换手机
213 天前
回复了 ssccyy 创建的主题 WATCH 求助 ios 13.3 怎么链接 watch 10
@LaureatePoet 谢谢, 用了 appid 签名 设置信任后 打开直接闪退 哈哈哈 我在研究下
213 天前
回复了 ssccyy 创建的主题 WATCH 求助 ios 13.3 怎么链接 watch 10
谢谢, 我 google 一下 啥软件
334 天前
回复了 ssccyy 创建的主题 汽车 预算 5 万推荐一款二手车
@ZhaoS 18 年朗逸 1.5L
2024-07-29 17:03:02 +08:00
回复了 ssccyy 创建的主题 汽车 预算 5 万推荐一款二手车
统一回复下, 推荐国产新车比较多, 我周末去试驾下
2024-07-29 17:01:10 +08:00
回复了 ssccyy 创建的主题 汽车 预算 5 万推荐一款二手车
@gitjcc 听劝, 周末看看帝豪
2024-07-29 14:44:09 +08:00
回复了 ssccyy 创建的主题 汽车 预算 5 万推荐一款二手车
收到, 谢谢
2024-07-29 11:39:32 +08:00
回复了 ssccyy 创建的主题 汽车 预算 5 万推荐一款二手车
@Goooooos 谢谢
2024-07-29 11:39:21 +08:00
回复了 ssccyy 创建的主题 汽车 预算 5 万推荐一款二手车
@adonislau 谢谢
@lxiian 感谢有空研究下监听 \n, 目前的解决方案是在 modifier 上判断的回车事件
modifier = Modifier
.weight(1f)
.border(1.dp, Color.Gray, RoundedCornerShape(4.dp))
.padding(4.dp)
.onKeyEvent {
// if (it.key.keyCode == Key.Backspace.keyCode) {
// it.key.keyCode
if (it.key.keyCode == Key.Enter.keyCode) {
productViewModel.zhEnter() // 触发回调函数
}
false
}
@nicevar 哎,领导让用原生安卓, 要是我自己直接 flutter 或者 uniapp ,再简单直接 hbuilder 套 h5 了
手持 PDA 设备:iData 95S
手持 PDA 设备系统: 安卓 6.0

项目 build.gradle
plugins {
id 'com.android.application'
id 'org.jetbrains.kotlin.android'
id 'org.jetbrains.kotlin.plugin.parcelize'
}

android {
compileSdk 34

defaultConfig {
applicationId "icu.bughub.app.app"
minSdk 21
targetSdk 34
versionCode 1
versionName "1.0"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
vectorDrawables {
useSupportLibrary true
}
}

buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = '1.8'
}
buildFeatures {
compose true
}
composeOptions {
kotlinCompilerExtensionVersion compose_version
}
packagingOptions {
resources {
excludes += '/META-INF/{AL2.0,LGPL2.1}'
}

pickFirst '**/libc++_shared.so'
doNotStrip "*/arm64-v8a/libYTCommon.so"
}
}

dependencies {

implementation 'androidx.core:core-ktx:1.7.0'
implementation "androidx.compose.ui:ui:$compose_version"
implementation "androidx.compose.material:material:$compose_version"
implementation "androidx.compose.ui:ui-tooling-preview:$compose_version"


def lifecycle_version = "2.4.1"

implementation "androidx.lifecycle:lifecycle-runtime-ktx:$lifecycle_version"
implementation "androidx.lifecycle:lifecycle-viewmodel-compose:$lifecycle_version"
implementation 'androidx.activity:activity-compose:1.4.0'

//accompanist
def accompanist_version = "0.24.3-alpha"
implementation "com.google.accompanist:accompanist-systemuicontroller:$accompanist_version"
implementation "com.google.accompanist:accompanist-insets:$accompanist_version"
implementation "com.google.accompanist:accompanist-pager:$accompanist_version"
implementation "com.google.accompanist:accompanist-navigation-animation:$accompanist_version"
implementation "com.google.accompanist:accompanist-placeholder-material:$accompanist_version"
implementation "com.google.accompanist:accompanist-swiperefresh:$accompanist_version"

//图标扩展
implementation "androidx.compose.material:material-icons-extended:$compose_version"

implementation "androidx.constraintlayout:constraintlayout-compose:1.0.0"


//图片加载
implementation("io.coil-kt:coil-compose:2.0.0-rc01")

//webview
implementation project(path: ':webview')


//播放器
implementation 'com.tencent.liteav:LiteAVSDK_Player:latest.release'

//datastore
implementation "androidx.datastore:datastore-preferences:1.0.0"

def retrofit = "2.9.0"
//网络请求框架
implementation "com.squareup.retrofit2:retrofit:$retrofit"
//GSON
// implementation "com.squareup.retrofit2:converter-gson:$retrofit"
//moshi
implementation "com.squareup.retrofit2:converter-moshi:$retrofit"

def moshi_version = "1.13.0"
implementation "com.squareup.moshi:moshi-kotlin:$moshi_version"


testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
androidTestImplementation "androidx.compose.ui:ui-test-junit4:$compose_version"
debugImplementation "androidx.compose.ui:ui-tooling:$compose_version"
}




会不会是我需要开什么原型的权限或者是什么行为。
2024-01-03 09:31:56 +08:00
回复了 ssccyy 创建的主题 问与答 求推荐记录日常记录购买生活用品价格的 APP
收到, 各位 xd
2023-11-10 10:01:04 +08:00
回复了 ssccyy 创建的主题 汽车 有没有大佬,传祺 GS3 影速怎么样
@chenjiangui998 算了的 次低配 (劲享版)
1  2  
关于     帮助文档     自助推广系统     博客     API     FAQ     Solana     2301 人在线   最高记录 6679       Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 24ms UTC 01:02 PVG 09:02 LAX 18:02 JFK 21:02
Do have faith in what you're doing.
ubao snddm index pchome yahoo rakuten mypaper meadowduck bidyahoo youbao zxmzxm asda bnvcg cvbfg dfscv mmhjk xxddc yybgb zznbn ccubao uaitu acv GXCV ET GDG YH FG BCVB FJFH CBRE CBC GDG ET54 WRWR RWER WREW WRWER RWER SDG EW SF DSFSF fbbs ubao fhd dfg ewr dg df ewwr ewwr et ruyut utut dfg fgd gdfgt etg dfgt dfgd ert4 gd fgg wr 235 wer3 we vsdf sdf gdf ert xcv sdf rwer hfd dfg cvb rwf afb dfh jgh bmn lgh rty gfds cxv xcv xcs vdas fdf fgd cv sdf tert sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf shasha9178 shasha9178 shasha9178 shasha9178 shasha9178 liflif2 liflif2 liflif2 liflif2 liflif2 liblib3 liblib3 liblib3 liblib3 liblib3 zhazha444 zhazha444 zhazha444 zhazha444 zhazha444 dende5 dende denden denden2 denden21 fenfen9 fenf619 fen619 fenfe9 fe619 sdf sdf sdf sdf sdf zhazh90 zhazh0 zhaa50 zha90 zh590 zho zhoz zhozh zhozho zhozho2 lislis lls95 lili95 lils5 liss9 sdf0ty987 sdft876 sdft9876 sdf09876 sd0t9876 sdf0ty98 sdf0976 sdf0ty986 sdf0ty96 sdf0t76 sdf0876 df0ty98 sf0t876 sd0ty76 sdy76 sdf76 sdf0t76 sdf0ty9 sdf0ty98 sdf0ty987 sdf0ty98 sdf6676 sdf876 sd876 sd876 sdf6 sdf6 sdf9876 sdf0t sdf06 sdf0ty9776 sdf0ty9776 sdf0ty76 sdf8876 sdf0t sd6 sdf06 s688876 sd688 sdf86