如何以编程方式创建FAB?

我有一个充满自定义视图的应用程序。 当我尝试以编程方式创建FAB时,它会引发错误

引起:java.lang.IllegalArgumentException:您需要在设计库中使用Theme.AppCompat主题(或后代)。

这是我的代码。

private FloatingActionButton getFAB() {
    FloatingActionButton fab = new FloatingActionButton(getContext());
    fab.setBackgroundDrawable(ContextCompat.getDrawable(getContext(), R.drawable.ic_add_white_24dp));
    return fab;
}

这是我的应用程序主题。

    <!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
    <!-- Customize your theme here. -->
</style>

请帮帮我。


通过使用主题包装器修复。 但是我仍然对使用ContextThemeWrapper感到惊讶

private FloatingActionButton getFAB() {
    Context context = new android.support.v7.internal.view.ContextThemeWrapper(getContext(), R.style.AppTheme);
    FloatingActionButton fab = new FloatingActionButton(context);
    return fab;
}
链接地址: http://www.djcxy.com/p/24245.html

上一篇: How to create FAB programmatically?

下一篇: What is different between MainActivity.this vs getApplicationContext()