我想以编程方式创建一个此处设计指南中定义的按钮:https ://material.io/design/components/buttons.html#outlined-button ,如下所示:
在 XML 中,我可以使用这段布局 xml 来做到这一点:
<com.google.android.material.button.MaterialButton
android:id="@+id/buttonGetStarted"
style="@style/Widget.MaterialComponents.Button.OutlinedButton"
android:text="@string/title_short_intro" />
我正在寻找的是一个示例,该示例显示如何使用 Java 代码执行此操作?我尝试了以下方法:
MaterialButton testSignIn = new MaterialButton( new ContextThemeWrapper( this, R.style.Widget_MaterialComponents_Button_OutlinedButton));
String buttonText = "Sign-in & empty test account";
testSignIn.setText( buttonText );
但这不会导致大纲变体: