首先,我在Xamarin for Android應用程序中編寫代碼。在佈局中獲取TextView的高度
我試過的是這個。
frame.AddView(background, LayoutParams.MatchParent, textViewA.Height);
frame.AddView(textViewA, LayoutParams.MatchParent, LayoutParams.WrapContent);
1)背景是具有背景的視圖。的FrameLayout的幀(例如)被設置
2)後,我添加此佈局爲tablerow
的問題是它。由於textViewA.Height的值爲0,所以我看不到背景。
如果我改變textViewA.Height到LayoutParams.WrapContent或LayoutParams.MatchParent,那麼背景覆蓋孔頁。
,如果我改變textViewA.Height 15,背景涵蓋TextView中的一部分。
所以,(我認爲)我必須知道textViewA的高度值的大小,使顯示的背景。 如何做到這一點?幫我。
謝謝,非常感謝! – wallah