Herkes yardım beni nasıl genişliğini ayarlamak için Can TextView
için wrap_content
kod üzerinden değil XML?
Dinamik olarak bir TextView
kod içi oluşturuyorum , bu nedenle genişliğini wrap_content
koda göre nasıl ayarlayacağım ?
Herkes yardım beni nasıl genişliğini ayarlamak için Can TextView
için wrap_content
kod üzerinden değil XML?
Dinamik olarak bir TextView
kod içi oluşturuyorum , bu nedenle genişliğini wrap_content
koda göre nasıl ayarlayacağım ?
Yanıtlar:
TextView pf = new TextView(context);
pf.setLayoutParams(new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT));
ConstraintLayout
Ve diğerleri gibi farklı düzenler için, kendi LayoutParams
gibi kendi düzenleri vardır :
pf.setLayoutParams(new ConstraintLayout.LayoutParams(ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT));
veya
parentView.addView(pf, new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT));
Aynı sonuca ulaşmanın başka bir yolu var. Yalnızca bir parametre ayarlamanız gerekirse, örneğin 'yükseklik':
TextView textView = (TextView)findViewById(R.id.text_view);
ViewGroup.LayoutParams params = textView.getLayoutParams();
params.height = ViewGroup.LayoutParams.WRAP_CONTENT;
textView.setLayoutParams(params);
LinearLayout
görünmüyor ll.invalidate()
. Neden?
İçeriği sarmak için TextView
genişliği değiştirme çözümü .
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
Android Java temel çok satırlı edittext gönderiyorum.
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 */
Bu gönderi hakkında küçük bir güncelleme: Android projenizde ktx kullanıyorsanız, LayoutParams'i çok daha kolay güncellemenizi sağlayan küçük bir yardımcı yöntem var.
Örneğin sadece genişliği güncellemek istiyorsanız, bunu Kotlin'deki aşağıdaki satır ile yapabilirsiniz.
tv.updateLayoutParams { width = WRAP_CONTENT }
android.view.ViewGroup$LayoutParams cannot be cast to android.widget.LinearLayout$LayoutParams