Android 如何实现竖排文字显示

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android 如何实现竖排文字显示相关的知识,希望对你有一定的参考价值。

参考技术A package com.coolsoft.attributionreject.tools;

import android.content.Context;
import android.util.AttributeSet;
import android.widget.LinearLayout;
import android.widget.TextView;

public class VerticalTextView extends LinearLayout

public VerticalTextView(Context context, AttributeSet attrs)
super(context, attrs);
setOrientation(VERTICAL);
this.context=context;

private String text;
private Context context;
private int color;
private int size=15;

public VerticalTextView(Context context)
super(context);
setOrientation(VERTICAL);
this.context=context;


public void setText(String text)

this.text=text;
addText();


private void addText()

removeAllViews();
if(text!=null)

char[] chara=text.toCharArray();
for(int i=0;i<chara.length;i++)

System.out.println("什么情况------"+text);
TextView oneText=new TextView(context);
oneText.setTextColor(color);

oneText.setText(text.substring(i, i+1));
if(size>0)

oneText.setTextSize(size);

addView(oneText);




public void setTextColor(int color)

this.color=color;

public void setTextSize(int size)

this.size=size;



你也可以修改里边的字体大小的。最好字数不要多,这样的空间字数多了消耗比较的大。
在xml当中加入包名,这个应该知道吧。本回答被提问者和网友采纳
参考技术B 把控件宽度设置只能显示一个字的宽度

以上是关于Android 如何实现竖排文字显示的主要内容,如果未能解决你的问题,请参考以下文章

虚幻UE4怎么让文本竖排显示?

网页文字竖排的几种实现方式

HTML Table表格里如何实现文字超长不折行?

在Excel中如何让文字竖排

文字竖排,英文竖排

UE4文本竖排