歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
您现在的位置: Linux教程網 >> UnixLinux >  >> Linux編程 >> Linux編程

Android如何在Java代碼中設置margin

習慣了直接在xml裡設置margin(距離上下左右都是10dip),如:

 <ImageView Android:layout_margin="10dip" android:src="@drawable/image" />

只是有些情況下,需要在java代碼裡來寫。

API(http://developer.android.com/reference/android/view/ViewGroup.MarginLayoutParams.html)中,android.view.ViewGroup.MarginLayoutParams有個方法setMargins(left, top, right, bottom)。可是View本身沒有setMargin方法,怎麼辦呢?

看見API上,其直接的子類有: FrameLayout.LayoutParams, LinearLayout.LayoutParams and RelativeLayout.LayoutParams。我們我們可以這樣寫:

  1. ImageView imageView = = new ImageView(getContext());
  2. LinearLayout.LayoutParams lp = new LinearLayout.LayoutParams(LinearLayout.LayoutParams.WRAP_CONTENT, LinearLayout.LayoutParams.WRAP_CONTENT, 1);  // , 1是可選寫的
  3. lp.setMargins(10, 20, 30, 40);  
  4. imageView.setLayoutParams(lp);  
Copyright © Linux教程網 All Rights Reserved