如何以编程方式更改Android ListView的布局边距

时间:2010-06-17 12:29:31

标签: android listview

我在xml中定义了一个列表视图,如下所示

     <ListView android:id="@+id/mylist" 
           android:layout_width="fill_parent" 
           android:layout_height="wrap_content"
            android:cacheColorHint="#00000000"
           android:layout_weight="1"
           android:layout_marginTop="95dip"/>

我需要在我的程序中重新定义布局边距,我可以如何实现这个

2 个答案:

答案 0 :(得分:25)

更简单地说,您可以修改现有的MarginLayoutParams实例来修改边距:

ViewGroup.MarginLayoutParams mlp = (ViewGroup.MarginLayoutParams) mListView
        .getLayoutParams();

mlp.setMargins(adjustmentPxs, 0, 0, 0);

break;

答案 1 :(得分:6)

如果您在Activity中获取了ListView对象,则可以使用方法setLayoutParams(),传入 android.view.ViewGroup.MarginLayoutParams的实例。