Android 如何实现竖排文字显示?

转自:http://blog.csdn.net/liaoyp_ios_android/article/details/6949768

  1. 在android.graphics.Canvas类中有个沿路径画字的方法  
  2. void drawTextOnPath(String text, Path path, float hOffset, float vOffset, Paint paint)  
  3. Draw the text, with origin at (x,y), using the specified paint, along the specified path.  
  4. void drawTextOnPath(char[] text, int index, int count, Path path, float hOffset, float vOffset, Paint paint)  
  5. Draw the text, with origin at (x,y), using the specified paint, along the specified path.  
  6.   
  7.   
  8. Test.java代码://需要在layout中定义Test,且设置背景,在java代码中设置test Text  
  9.   
  10. public class Test extends View {  
  11.   
  12.      private Paint paint;  
  13.      private Path path;  
  14.      private Matrix matrix;  
  15.      private int width = -1;  
  16.      private int height = -1;  
  17.      private float left = 3;  
  18.      private float top = 18;  
  19.      private String title = "";  
  20.      BitmapDrawable drawable = (BitmapDrawable) getBackground();  
  21.   
  22.      public Test(Context context, AttributeSet attrs) {  
  23.          super(context, attrs);  
  24.          paint = new Paint();  
  25.          paint.setColor(Color.WHITE);//定义字体颜色  
  26.          paint.setTextSize(14);//定义字体大小  
  27.          path = new Path();  
  28.          path.lineTo(0,500);//定义字符路径  
  29.          matrix = new Matrix();  
  30.          Log.v("onMeasure""2");  
  31.      }  
  32.   
  33.      @Override  
  34.      protected void onDraw(Canvas canvas) {  
  35.          //画背景  
  36.          Bitmap b = Bitmap.createBitmap(drawable.getBitmap(),0,0,width,height);  
  37.          canvas.drawBitmap(b, matrix, paint);  
  38.          //画字  
  39.          showText(canvas, title);  
  40.      }    
  41.   
  42.   
  43.      private void showText(Canvas canvas, String text){  
  44.          float w;  
  45.          final int len = text.length();  
  46.          float py = 0 + top;  
  47.          for(int i=0; i<len; i ++){  
  48.              char c = text.charAt(i);  
  49.               w = paint.measureText(text, i, i+1);//获取字符宽度  
  50.               StringBuffer b = new StringBuffer();  
  51.               b.append(c);  
  52.               if(py > 81){//定义字的范围  
  53.              return;  
  54.              }  
  55.              if(isChinese(c)){  
  56.                  py += w;  
  57.                  if(py > 81){  
  58.                      return;  
  59.                  }  
  60.                  canvas.drawText(b.toString(), left, py, paint); //中文处理方法   
  61.               }else {  
  62.                  canvas.drawTextOnPath(b.toString(), path, py, -left-2, paint);//其他文字处理方法  
  63.                  py += w;  
  64.              }  
  65.          }  
  66.      }  
  67.   
  68.      public void setText(String title){  
  69.          this.title = title;  
  70.      }  
  71.   
  72.      public String getText(){  
  73.          return title;  
  74.      }  
  75.   
  76.   
  77.      private boolean isChinese(char c) {  
  78.          Character.UnicodeBlock ub = Character.UnicodeBlock.of(c);  
  79.          if (ub == Character.UnicodeBlock.CJK_UNIFIED_IDEOGRAPHS  
  80.               || ub == Character.UnicodeBlock.CJK_COMPATIBILITY_IDEOGRAPHS  
  81.              || ub == Character.UnicodeBlock.CJK_UNIFIED_IDEOGRAPHS_EXTENSION_A  
  82.              || ub == Character.UnicodeBlock.GENERAL_PUNCTUATION  
  83.              || ub == Character.UnicodeBlock.CJK_SYMBOLS_AND_PUNCTUATION  
  84.              || ub == Character.UnicodeBlock.HALFWIDTH_AND_FULLWIDTH_FORMS) {  
  85.              return true;  
  86.          }  
  87.          return false;  
  88.      }  
  89.   
  90.      //重写View大小方法,使view大小为背景图片大小  
  91.      @Override  
  92.      protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {  
  93.          // super.onMeasure(widthMeasureSpec, heightMeasureSpec);  
  94.          if (null != getBackground()) {  
  95.   
  96.              int h = drawable.getIntrinsicHeight();  
  97.              int w = drawable.getIntrinsicWidth();  
  98.              Log.v("onMeasure""null != getBackground() h:" + h + " w:" + w);  
  99.              width = w;  
  100.              height = h;  
  101.              setMeasuredDimension(w, h);  
  102.          } else {  
  103.              width = widthMeasureSpec;  
  104.              height = heightMeasureSpec;  
  105.              super.measure(widthMeasureSpec, heightMeasureSpec);  
  106.          }  
  107.     }  
  108.   
  109. }  
  110.   
  111.   
  112.   
  113.   
  114. 在Android中,若要通过程序改变屏幕显示的方向,必须要覆盖setRequestedOrientation()方法,而若要取得目前的屏幕方向,则需要访问getRequestedOrientation()方法。本范例为求简要示范更改做法,设计了一个按钮,当单击按钮的同时,判断当下的屏幕方向,例如竖排(PORTRAIT),则将其更改为横排(LANDSCAPE);若为横排(LANDSCAPE),则将其更改为竖排(PORTRAIT)  

你可能感兴趣的:(Android 如何实现竖排文字显示?)