android 动态设置布局宽度

android 动态设置布局宽度,第1张

例如设置一个图片宽高 关键代码:

//取控件当前的布局参数

LinearLayout.LayoutParams params = (LinearLayout.LayoutParams) imageView.getLayoutParams()

//设置宽度值

params.width = dip2px(MainActivity.this, width)

//设置高度值

params.height = dip2px(MainActivity.this, height)

//使设置好的布局参数应用到控件

imageView.setLayoutParams(params)

1

2

3

4

5

6

7

8

1

2

3

4

5

6

7

8

高度除了可以设置成以上固定的值,也可以设置成wrap_content或match_content

ViewGroup.LayoutParams.WRAP_CONTENT

ViewGroup.LayoutParams.MATCH_PARENT

1

2

1

2

在这里插入图片描述

xml

Android动态改变View控件大小的方法:

1、声明控件参数获取对象 LayoutParams lp;

2、获取控件参数: lp = 控件id.getLayoutParams()

3、设置控件参数:如高度。 lp.height -= 10

4:、使设置生效:控件id.setLayoutParams(lp)

例如如要把Imageview下移200px:ImageView.setPadding( ImageView.getPaddingLeft(), ImageView.getPaddingTop()+200, ImageView.getPaddingRight(), ImageView.getPaddingBottom())

以下两种方式都可以做到:

一、在xml布局文件中设置,wrap_content即表示根据gridView的内容自使用宽高,代码如下:

 android:layout_width="wrap_content"

 android:layout_height="wrap_content"

二、在代码中动态设置,可以在对gridview赋值之后,计算gridview的宽高,然后进行设置:

int height = 20//此处的高度需要动态计算   

int width = 30//此处的宽度需要动态计算 

LinearLayout.LayoutParams linearParams =new LayoutParams(width, height)

gridview.setLayoutParams(linearParams) //使设置好的布局参数应用到控件

需要注意的是:如果你的gridview是嵌套在ScrollView中,那么,你需要重写gridview控件,不然gridview只显示一行的问题(即高度不够),具体重写方式,可以参考下面代码:

/**

 * @author hnbcinfo

 * 自定义GridView控件,解决在ListView 或ScrollView中使用GridView导致GridView显示不全的问题

 * 当前应用:时间轴中,图片显示

 */

public class GridViewForScrollView extends GridView {   

    public GridViewForScrollView(Context context, AttributeSet attrs) {   

        super(context, attrs)   

    }   

  

    public GridViewForScrollView(Context context) {   

        super(context)   

    }   

  

    public GridViewForScrollView(Context context, AttributeSet attrs, int defStyle) {   

        super(context, attrs, defStyle)   

    }   

  

    @Override   

    public void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {   

  

        int expandSpec = MeasureSpec.makeMeasureSpec(   

                Integer.MAX_VALUE >> 2, MeasureSpec.AT_MOST)   

        super.onMeasure(widthMeasureSpec, expandSpec)   

    }   

}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/tougao/11019462.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-13
下一篇 2023-05-13

发表评论

登录后才能评论

评论列表(0条)

保存