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

前端之家收集整理的这篇文章主要介绍了如何以编程方式更改Android ListView的布局边距前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在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的实例.
原文链接:https://www.f2er.com/android/314183.html

猜你在找的Android相关文章