众所周知,我们可以使用
在drawable_left
上设置EditText
edittext.setcCompoundDrawablesWithIntrinsicBounds(R.drawable.icon,0,0,0);
是否可以在编辑文字的左侧设置不可编辑的文字“A”?
答案 0 :(得分:1)
您可以这样做(例如,值):
<RelativeLayout android:layout_width="wrap_content"
android:layout_height="wrap_content">
<TextView android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="A"
android:layout_marginRight="10dp"/>
<EditText android:layout_width="100dp"
android:layout_height="25dp"
android:id="@+id/editTextView"
android:layout_marginLeft="40dp"/>
</RelativeLayout>