Tengo TextView
, lo que quiero es hacer el círculo de forma TextView
y luego establecer el color de fondo diferente según la condición diferente que he utilizado. Puedo establecer el color de fondo basado en condiciones diferentes pero no puedo hacer el círculo de forma TextView
. Entonces, cómo se puede hacer eso. Por favor, ayúdame a resolver esto.Cómo hacer círculo de forma de vista de texto y establecer diferente color de fondo según la condición
Código he utilizado es
TextView txt_stage_display = (TextView)findViewById(R.id.txt_stage_display);
if(m_enStage[position] == enSTAGE_START)
{
txt_stage_display.setBackgroundColor(Color.parseColor("#D48393"));
}
else if(m_enStage[position] == enSTAGE_FLOW)
{
txt_stage_display.setBackgroundColor(Color.parseColor("#D48393"));
}
else if(m_enStage[position] == enSTAGE_SAFE)
{
txt_stage_display.setBackgroundColor(Color.parseColor("#66B0CC"));
}
else if(m_enStage[position] == enSTAGE_UNSAFE)
{
txt_stage_display.setBackgroundColor(Color.parseColor("#D8C627"));
}
else if(m_enStage[position] == enSTAGE_FERTILE)
{
txt_stage_display.setBackgroundColor(Color.parseColor("#67A05E"));
}
else
{
txt_stage_display.setBackgroundColor(Color.parseColor("#808080"));
}
Lo que hacer significa por "Hacer un círculo de forma de vista de texto"? ¿Desea poder hacer algo como esto http://johnfenzel.typepad.com/john_fenzels_blog/images/2007/04/07/gilgaf108_2.gif? o algo mas ? – XGouchet
Aquí está la solución de tu pregunta: [Aquí] [1] [1]: http://stackoverflow.com/questions/10150642/draw-text-in-circular-view/10150970#10150970 –
Quiero decir, quiero textView look oval y al mismo tiempo quiero establecer el color de fondo de textView basado en la condición que ya tengo en mi código. – AndroidDev