首先,打开Android Studio项目,在res目录下创建一个新的文件夹drawable-start。将Start图标放在这个文件夹中。
接下来,在xml布局文件中使用以下代码来设置图标:
TextView textView = findViewById(R.id.textview);
Drawable startDrawable = getResources().getDrawable(R.drawable.ic_start);
textView.setCompoundDrawablesWithIntrinsicBounds(startDrawable, null, null, null);
这样就能解决可绘制的Start图标在Android Studio中位置不正确的问题了。