简体   繁体   中英

How to set Linear Layout Margin Programmatically (Xamarin)

I have a linear layout in my layout xml:

<LinearLayout
    android:id="@+id/loginForm_LinearLayout" `
    android:orientation="vertical" 
   android:layout_width="220dp" 
    android:layout_height="wrap_content" 
    android:layout_centerHorizontal="true"> 

         ...some item... 

</LinearLayout>    `

But when program run, i have to change Margin top of this Linear Layout . How can do that in xamarin ?

Try this

 LinearLayout.LayoutParams ll = new LinearLayout.LayoutParams (ViewGroup.LayoutParams.FillParent, ViewGroup.LayoutParams.FillParent);

 ll.SetMargins (0,0,0,10);
 mainPanel.LayoutParameters = ll

OR

var mainPanel = FindViewById<LinearLayout>(Resource.Id.mainasdf);
var linearLayoutParams = new LinearLayout.LayoutParams(ViewGroup.LayoutParams.FillParent,
                                                      ViewGroup.LayoutParams.FillParent);
linearLayoutParams.SetMargins(0, 0, 0, 0);
mainPanel.LayoutParameters = linearLayoutParams

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM