我在xml中定义了一个List View,如下所示
<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"/>
我需要在我的程序中重新定义布局余量,我可以如何实现这一点
解决方法
如果在Activity中获取了ListView对象,则可以使用方法
setLayoutParams(),传入
android.view.ViewGroup.MarginLayoutParams的实例.