Android画布未在RTL上绘图

Android画布未在RTL上绘图

本文介绍了Android画布未在RTL上绘图的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有以下视图类:

public class MyHorizontalViewIndicator extends View{

     protected synchronized void onDraw(Canvas canvas) {
           super.onDraw(canvas);
           Paint paint = new Paint();
           paint.setTextSize(30);
           canvas.drawText("Test",90, 90, paint);
     }
}



 <com.my.myview.MyHorizontalViewIndicator
    android:id="@+id/view_indicator"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginTop="4dp"
    android:layoutDirection="inherit"/>

当语言为英语(LTR)时,测试消息显示正常,但是当我更改

When the language is English, (LTR) the test message appears fine, however, when I change the language to Arabic (RTL) the canvas is not shown.

推荐答案

您可以添加以下代码:

 layoutDirection = LayoutDirection.LTR

这篇关于Android画布未在RTL上绘图的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-03 23:29