微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

AndroidX浏览器1.2.0是否支持CustomTabsAction?

如何解决AndroidX浏览器1.2.0是否支持CustomTabsAction?

我正在开发一个使用customtabs的应用程序,我发现可以通过使用setActionButton API来添加按钮,但是当我按如下所示尝试使用此api时:

CustomTabsIntent.Builder builder = new CustomTabsIntent.Builder();
final int mainActionResId = R.drawable.abc_ic_commit_search_api_mtrl_alpha;
final Bitmap mainActionBitmap = BitmapFactory.decodeResource (MainActivity.this.getResources (),mainActionResId);
builder.setActionButton (mainActionBitmap,"Notify me!",createPendingMainActionNotifyIntent (MainActivity.this,action));
 
// Main action: create notification
    private static PendingIntent createPendingMainActionNotifyIntent(
            @NonNull final Context context,@NonNull final CustomTabsAction action) {

        Intent actionIntent = new Intent(context,CustomTabsMainActionService.class);
        actionIntent.putExtra ("Action",action);
        return PendingIntent.getService(context,actionIntent,PendingIntent.FLAG_UPDATE_CURRENT);
    }
} 

说无法解析符号“ CustomTabsAction” 这是否意味着customTabsAction不适用于androidx?然后请帮忙知道,我该如何在androidx中的custoMetabs中使用操作按钮?

请在下面的构建gradle文件中查看已使用的依赖项

implementation filetree(dir: 'libs',include: ['*.jar'])
    implementation 'androidx.appcompat:appcompat:1.2.0'
    implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
    implementation "androidx.browser:browser:1.2.0"
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'androidx.test.ext:junit:1.1.2'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
 

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。