我有一个edittext,其图像为drawable left,带有不可编辑的前缀editext,但现在我想让它支持rtl。尽管我努力,但我无法支持rtl。
我的自定义类如下,
public class PrefixedEditText extends TextInputEditText {
private String mPrefix = "+"; // can be hardcoded for demo purposes
private Rect mPrefixRect = new Rect(); // actual prefix size
public PrefixedEditText(Context context, AttributeSet attrs) {
super(context, attrs);
}
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
getPaint().getTextBounds(mPrefix, 0, mPrefix.length(), mPrefixRect);
mPrefixRect.right += getPaint().measureText(" "); // add some offset
super.onMeasure(widthMeasureSpec, heightMeasureSpec);
}
@Override
protected void onDraw(Canvas canvas) {
super.onDraw(canvas);
canvas.drawText(mPrefix, super.getCompoundPaddingLeft(), getBaseline(), getPaint());
}
@Override
public int getCompoundPaddingLeft() {
return super.getCompoundPaddingLeft() + mPrefixRect.width();
}
}
我对此类的xml调用如下,
<cl.dd.ui.PrefixedEditText
style="@style/edittext"
android:id="@+id/etCode"
android:maxLength="3"
android:drawableLeft="@drawable/icon_phone_number"
android:drawableStart="@drawable/icon_phone_number"
android:minWidth="@dimen/dim_img_width"
android:hint="@string/s_login_code"
android:tag="@string/s_login_country_code"
android:inputType="number"/>
答案 0 :(得分:3)
您需要确保supportsRtl
AndroidManifest.xml
设置为true
<application
...
android:supportsRtl="true">
如果您要定位SDK 17 +,请将layoutDirection
设置为布局xml中的locale
,inherit
或rtl
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:layoutDirection="locale">
如果您的目标SDK低于17,则必须创建另一个res目录,例如layout-ldrtl
或values-ldrtl
,并且可能会向您的自定义视图发送rtl标记。
答案 1 :(得分:2)
要使用区域设置支持来实现带前缀的编辑文本,只需创建自定义编辑文本并将前缀绘制为可绘制的。
请参阅下面的代码段:
/**
* Custom EditText that displays a fixed prefix in line with the text.
* The trick here is to draw the prefix as a drawable and attach it via
* setCompoundDrawables().
*/
public class PrefixEditText extends AppCompatEditText {
private ColorStateList mPrefixTextColor;
public PrefixEditText(Context context) {
this(context, null);
}
public PrefixEditText(Context context, AttributeSet attrs) {
this(context, attrs, android.R.attr.editTextStyle);
}
public PrefixEditText(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
mPrefixTextColor = getTextColors();
}
public void setPrefix(String prefix) {
if (Locale.getDefault().getLanguage().equalsIgnoreCase("en"))
setCompoundDrawables(new TextDrawable(prefix + " "), null, null, null);
else if (Locale.getDefault().getLanguage().equalsIgnoreCase("ar"))
setCompoundDrawables(null, null, new TextDrawable(" " + prefix), null);
}
public void setPrefixTextColor(int color) {
mPrefixTextColor = ColorStateList.valueOf(color);
}
private class TextDrawable extends Drawable {
private String mText = "";
TextDrawable(String text) {
mText = text;
setBounds(0, 0, (int) getPaint().measureText(mText) + 3, (int) getTextSize());
}
@Override
public void draw(Canvas canvas) {
Paint paint = getPaint();
paint.setColor(mPrefixTextColor.getColorForState(getDrawableState(), 0));
int lineBaseline = getLineBounds(0, null);
canvas.drawText(mText, 0, canvas.getClipBounds().top + lineBaseline, paint);
}
@Override
public void setAlpha(int alpha) {/* Not supported */}
@Override
public void setColorFilter(ColorFilter colorFilter) {/* Not supported */}
@Override
public int getOpacity() {
return 1;
}
}
}
答案 2 :(得分:0)
以下是我的建议。
而不是扩展TextInputEditText
,而是根据布局创建自定义视图。
布局可以是这样的:
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<TextView
android:id="@+id/prefixTextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentStart="true />
<EditText
android:id="@+id/editText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toEndOf="@id/prefixTextView" />
</RelativeLayout>
然后,您可以创建自定义视图,使用此布局扩展RelativeLayout
。它将适应语言方向的变化。
有一些缺点 - 生成的View不会出现在EditText
类层次结构中,并且在很多地方使用它会最终损害UI性能,因为它引入了嵌套布局,但至少RTL部分没问题。
答案 3 :(得分:0)
要实现RTL,只需放置drawableStart而不是drawableLeft。 像这样:
<cl.dd.ui.PrefixedEditText
style="@style/edittext"
android:id="@+id/etCode"
android:maxLength="3"
android:drawableStart="@drawable/icon_phone_number"
android:drawableStart="@drawable/icon_phone_number"
android:minWidth="@dimen/dim_img_width"
android:hint="@string/s_login_code"
android:tag="@string/s_login_country_code"
android:inputType="number"/>
这可以解决问题。