我有一个问题,我将 EditText 背景设置为 draw9patch,但它似乎不起作用。希望能得到一些帮助以使其正常工作。
问题是 - -9patch 文件像常规 png 一样运行 - 没有正确拉伸 - 黑色像素在屏幕上可见
我用来显示editText的代码是:
<EditText
android:id="@+id/ed_confsms_message"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/tv_sms_conf_toNum"
android:layout_marginTop="32dp"
android:background="@drawable/speechbubble"
android:padding="0dp"
android:inputType="textMultiLine"
android:gravity="center_horizontal|center"
android:imeOptions="actionNone"
android:isScrollContainer="true"
android:lines="10"
android:scrollbars="vertical"/>
它看起来像:
(见左图)