Alguém pode me ajudar como definir a largura de TextView
para wrap_content
através do código e não de XML?
Estou criando dinamicamente um TextView
no código, então há alguma maneira de definir sua largura wrap_content
através do código?
Alguém pode me ajudar como definir a largura de TextView
para wrap_content
através do código e não de XML?
Estou criando dinamicamente um TextView
no código, então há alguma maneira de definir sua largura wrap_content
através do código?
Respostas:
TextView pf = new TextView(context);
pf.setLayoutParams(new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT));
Para layouts diferentes como ConstraintLayout
e outros, eles têm seus próprios LayoutParams
, assim:
pf.setLayoutParams(new ConstraintLayout.LayoutParams(ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT));
ou
parentView.addView(pf, new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT));
Existe outra maneira de obter o mesmo resultado. Caso você precise definir apenas um parâmetro, por exemplo 'altura':
TextView textView = (TextView)findViewById(R.id.text_view);
ViewGroup.LayoutParams params = textView.getLayoutParams();
params.height = ViewGroup.LayoutParams.WRAP_CONTENT;
textView.setLayoutParams(params);
LinearLayout
, não parece que ll.invalidate()
seja necessário. Por quê?
Solução para alterar a TextView
largura para envolver o conteúdo .
textView.getLayoutParams().width = ViewGroup.LayoutParams.WRAP_CONTENT;
textView.requestLayout();
// Call requestLayout() for redraw your TextView when your TextView is already drawn (laid out) (eg: you update TextView width when click a Button).
// If your TextView is drawing you may not need requestLayout() (eg: you change TextView width inside onCreate()). However if you call it, it still working well => for easy: always use requestLayout()
// Another useful example
// textView.getLayoutParams().width = 200; // For change `TextView` width to 200 pixel
Estou postando texto de edição de várias linhas com base em Java para Android.
EditText editText = findViewById(R.id.editText);/* edittext access */
ViewGroup.LayoutParams params = editText.getLayoutParams();
params.height = ViewGroup.LayoutParams.WRAP_CONTENT;
editText.setLayoutParams(params); /* Gives as much height for multi line*/
editText.setSingleLine(false); /* Makes it Multi line */
android.view.ViewGroup$LayoutParams cannot be cast to android.widget.LinearLayout$LayoutParams