要在Android中添加左侧绘图并固定按钮的文本,可以使用带有CompoundDrawable的TextView。以下是一个示例代码:
// 获取TextView实例
TextView textView = findViewById(R.id.textView);
// 设置左侧绘图
Drawable drawable = getResources().getDrawable(R.drawable.ic_android);
textView.setCompoundDrawablesWithIntrinsicBounds(drawable, null, null, null);
// 设置文本
textView.setText("按钮文本");
其中,R.drawable.ic_android是指定的左侧绘图的资源文件。请确保在项目中有相应的资源文件。要固定按钮的文本,可以直接调用setText()方法设置文本内容。
这样,就可以在TextView中添加左侧绘图并固定按钮的文本。