2010-05-22 15 views
26

Digamos que tiene una vista de texto normal, con "Stackoverflow" escrito en ella, ¿es posible girar la vista de texto en -90 °, para tener la S en la parte inferior y la W en la parte superior de la pantalla? Por supuesto, podría escribir mi texto como una imagen, rotarlo y usarlo de esa manera, pero ahora estoy interesado en el texto. Gracias.¿Es posible escribir verticalmente en una vista de texto en Android?

+1

Es posible hacer esto ahora en XML: http://stackoverflow.com/questions/3774770/sideways-view-with-xml-android – chobok

Respuesta

36

Puede configurar el TextView como lo haría normalmente

por ejemplo:

<TextView android:id="@+id/txtview" 
    android:layout_height="fill_parent" 
    android:layout_width="wrap_content" /> 

y escribir una función en su actividad para

  • revertir los caracteres del texto
  • insertar \n después de cada caracteres

y luego configure el texto en TextView.

Si no desea insertar el \n, tendrá que ajustar el tamaño de android:layout_width y jugar con el tamaño de fuente que no tienen 2 personajes encajan en la misma línea y sin truncamiento

Editar Si yo Te he entendido bien, puedes obtener lo que quieres usando animación.

Por ejemplo

Bajo res/animation/myanim.xml:

<rotate xmlns:android="http://schemas.android.com/apk/res/android" 
      android:fromDegrees="0" 
      android:toDegrees="-90" 
      android:pivotX="50%" 
      android:duration="0" /> 

Tendrá que jugar con este archivo para definir dónde quiere que su vista de texto a ser colocado.

En su actividad:

TextView t = (TextView)findViewById(R.id.txtview); 
    String txt = "Stackoverflow";   
    t.setText(txt); 

    RotateAnimation ranim = (RotateAnimation)AnimationUtils.loadAnimation(this, R.anim.myanim); 
    ranim.setFillAfter(true); //For the textview to remain at the same place after the rotation 
    t.setAnimation(ranim); 
+0

Sí, a pesar de eso, pero eso no es lo que se explica y pregunté en realidad, no quiero que cada personaje sea uno encima del otro, pero todos con una rotación de -90 ° ... ¿es esto posible? – Sephy

+1

aha bien - Creo que sé lo que quieres decir ahora - No tengo ni idea de cómo hacerlo, pero lo pensaré – ccheneson

+0

Sí, es una gran idea. – Sephy

8

probar esto. Funciona bien para mí. Puede mostrar una línea de texto verticalmente, pero solo una línea. los colores, el tamaño, los almohadones, los márgenes y el fondo funcionan bien.

public class VerticalTextView extends TextView { 

    public VerticalTextView(Context context, AttributeSet attrs, int defStyle) { 
     super(context, attrs, defStyle); 
    } 

    public VerticalTextView(Context context, AttributeSet attrs) { 
     super(context, attrs); 
    } 

    public VerticalTextView(Context context) { 
     super(context); 
    } 

    @Override 
    protected void onDraw(Canvas canvas) { 
     final ColorStateList csl = getTextColors(); 
     final int color = csl.getDefaultColor(); 
     final int paddingBottom = getPaddingBottom(); 
     final int paddingTop = getPaddingTop(); 
     final int viewWidth = getWidth(); 
     final int viewHeight = getHeight(); 
     final TextPaint paint = getPaint(); 
     paint.setColor(color); 
     final float bottom = viewWidth * 9.0f/11.0f; 
     Path p = new Path(); 
     p.moveTo(bottom, viewHeight - paddingBottom - paddingTop); 
     p.lineTo(bottom, paddingTop); 
     canvas.drawTextOnPath(getText().toString(), p, 0, 0, paint); 
    } 
} 
+0

Uso la clase en xml y no funciona. ¿Podría decirme cómo usarlo? ¡Gracias! – herbertD

+0

¿Recibió la solución herbertD? –

+0

No funcionó para mí, el texto no se mostró correctamente – Lancelot

5

Si está utilizando API 11 o posterior, puede intentar:

TextView t = (TextView) findViewById(R.id.txtview); 
String txt = "Stackoverflow";   
t.setText(txt); 
t.setRotation(90); // 90 degree rotation 
+4

, esto tendrá problemas con los límites de la vista de texto. onMeasure() debería redefinirse para él. –

+0

Creo que esto no es un problema, ¿o sí? Simplemente cambie de ancho y alto ... – Chris623

16

trabajado para mí:

public class VerticalTextView extends TextView { 

    private int _width, _height; 
    private final Rect _bounds = new Rect(); 

    public VerticalTextView(Context context, AttributeSet attrs, int defStyle) { 
     super(context, attrs, defStyle); 
    } 

    public VerticalTextView(Context context, AttributeSet attrs) { 
     super(context, attrs); 
    } 

    public VerticalTextView(Context context) { 
     super(context); 
    } 

    @Override 
    protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) { 
     super.onMeasure(widthMeasureSpec, heightMeasureSpec); 
     // vise versa 
     _height = getMeasuredWidth(); 
     _width = getMeasuredHeight(); 
     setMeasuredDimension(_width, _height); 
    } 

    @Override 
    protected void onDraw(Canvas canvas) { 
     canvas.save(); 

     canvas.translate(_width, _height); 
     canvas.rotate(-90); 

     TextPaint paint = getPaint(); 
     paint.setColor(getTextColors().getDefaultColor()); 

     String text = text(); 

     paint.getTextBounds(text, 0, text.length(), _bounds); 
     canvas.drawText(text, getCompoundPaddingLeft(), (_bounds.height() - _width)/2, paint); 

     canvas.restore(); 
    } 

    private String text() { 
     return super.getText().toString(); 
    } 
} 

xml:

<VerticalTextView 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:layout_gravity="left|center_vertical" 
      android:background="@color/feedback_background" 
      android:padding="4dip" 
      android:text="@string/feedback" 
      android:textColor="@color/feedback_text_color" 
      android:textSize="@dimen/text_xlarge" /> 
+2

Sé que no es gran cosa, pero si algún día algunos n00b como yo intentan implementarlo y obtienen algunos errores, intente usar: '' en lugar de simplemente ' '. De todos modos, tu respuesta me ayudó mucho. ¡Gracias! – xadun

+0

Funciona perfectamente. ¡Gracias! – Lancelot

+0

¿Cómo rotar a 90 grados en lugar de -90? – Dharmendra

3

podemos establecer Rotación con vista XML

<TextView android:id="@+id/txtview" 
     android:rotation="-90" 
     android:text="123" 
     android:layout_height="wrap_content" 
     android:layout_width="wrap_content" /> 
+0

esto funciona pero se vuelve muy difícil usar el editor de interfaz de usuario luego – Louis

0

Proporcioné una solución en otro StackOverflow question. Puede obtener TextView vertical al extender desde Ver y anular sus métodos onMeasure() y onDraw(). Sin embargo, no admitirá todas las funciones de TextView, sino las principales, como el relleno, el tamaño, el color y la fuente.

import android.annotation.TargetApi; 
import android.content.Context; 
import android.graphics.Canvas; 
import android.graphics.Paint; 
import android.graphics.Rect; 
import android.graphics.Typeface; 
import android.os.Build; 
import android.text.TextPaint; 
import android.util.AttributeSet; 
import android.util.Log; 
import android.util.TypedValue; 
import android.view.View; 
import android.view.ViewGroup; 
import android.widget.TextView; 

public class VerticalLabelView extends View 
{ 
    private final String LOG_TAG   = "VerticalLabelView"; 
    private final int DEFAULT_TEXT_SIZE = 30; 
    private int   _ascent   = 0; 
    private int   _leftPadding  = 0; 
    private int   _topPadding  = 0; 
    private int   _rightPadding  = 0; 
    private int   _bottomPadding = 0; 
    private int   _textSize   = 0; 
    private int   _measuredWidth; 
    private int   _measuredHeight; 
    private Rect   _textBounds; 
    private TextPaint _textPaint; 
    private String  _text    = ""; 
    private TextView  _tempView; 
    private Typeface  _typeface   = null; 
    private boolean  _topToDown = false; 

    public VerticalLabelView(Context context) 
    { 
     super(context); 
     initLabelView(); 
    } 

    public VerticalLabelView(Context context, AttributeSet attrs) 
    { 
     super(context, attrs); 
     initLabelView(); 
    } 

    public VerticalLabelView(Context context, AttributeSet attrs, int defStyleAttr) 
    { 
     super(context, attrs, defStyleAttr); 
     initLabelView(); 
    } 

    @TargetApi(Build.VERSION_CODES.LOLLIPOP) 
    public VerticalLabelView(Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes) 
    { 
     super(context, attrs, defStyleAttr, defStyleRes); 
     initLabelView(); 
    } 

    private final void initLabelView() 
    { 
     this._textBounds = new Rect(); 
     this._textPaint = new TextPaint(); 
     this._textPaint.setAntiAlias(true); 
     this._textPaint.setTextAlign(Paint.Align.CENTER); 
     this._textPaint.setTextSize(DEFAULT_TEXT_SIZE); 
     this._textSize = DEFAULT_TEXT_SIZE; 
    } 

    public void setText(String text) 
    { 
     this._text = text; 
     requestLayout(); 
     invalidate(); 
    } 

    public void topToDown(boolean topToDown) 
    { 
     this._topToDown = topToDown; 
    } 

    public void setPadding(int padding) 
    { 
     setPadding(padding, padding, padding, padding); 
    } 

    public void setPadding(int left, int top, int right, int bottom) 
    { 
     this._leftPadding = left; 
     this._topPadding = top; 
     this._rightPadding = right; 
     this._bottomPadding = bottom; 
     requestLayout(); 
     invalidate(); 
    } 

    public void setTextSize(int size) 
    { 
     this._textSize = size; 
     this._textPaint.setTextSize(size); 
     requestLayout(); 
     invalidate(); 
    } 

    public void setTextColor(int color) 
    { 
     this._textPaint.setColor(color); 
     invalidate(); 
    } 

    public void setTypeFace(Typeface typeface) 
    { 
     this._typeface = typeface; 
     this._textPaint.setTypeface(typeface); 
     requestLayout(); 
     invalidate(); 
    } 

    @Override 
    protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) 
    { 
     try 
     { 
      this._textPaint.getTextBounds(this._text, 0, this._text.length(), this._textBounds); 

      this._tempView = new TextView(getContext()); 
      this._tempView.setPadding(this._leftPadding, this._topPadding, this._rightPadding, this._bottomPadding); 
      this._tempView.setText(this._text); 
      this._tempView.setTextSize(TypedValue.COMPLEX_UNIT_PX, this._textSize); 
      this._tempView.setTypeface(this._typeface); 

      this._tempView.measure(ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT); 

      this._measuredWidth = this._tempView.getMeasuredHeight(); 
      this._measuredHeight = this._tempView.getMeasuredWidth(); 

      this._ascent = this._textBounds.height()/2 + this._measuredWidth/2; 

      setMeasuredDimension(this._measuredWidth, this._measuredHeight); 
     } 
     catch (Exception e) 
     { 
      setMeasuredDimension(widthMeasureSpec, heightMeasureSpec); 
      Log.e(LOG_TAG, Log.getStackTraceString(e)); 
     } 
    } 

    @Override 
    protected void onDraw(Canvas canvas) 
    { 
     super.onDraw(canvas); 

     if (!this._text.isEmpty()) 
     { 
      float textHorizontallyCenteredOriginX = this._measuredHeight/2f; 
      float textHorizontallyCenteredOriginY = this._ascent; 

      canvas.translate(textHorizontallyCenteredOriginY, textHorizontallyCenteredOriginX); 

      float rotateDegree = -90; 
      float y = 0; 

      if (this._topToDown) 
      { 
       rotateDegree = 90; 
       y = this._measuredWidth/2; 
      } 

      canvas.rotate(rotateDegree); 
      canvas.drawText(this._text, 0, y, this._textPaint); 
     } 
    } 
} 
Cuestiones relacionadas