动态设置相对布局中控件的属性

android中有时候会动态设置相对布局中控件的位置或者显示与否,对于线性布局来讲直接设置LinearLayoutParm的相关属性即可,对于相对布局稍有不同,需要添加规则:以设置imageview显示位置为例,如下:

        img_logo = (ImageView) findViewById(R.id.imgView_head_triangle);
        
        RelativeLayout.LayoutParams parm = new LayoutParams(RelativeLayout.LayoutParams.WRAP_CONTENT,RelativeLayout.LayoutParams.WRAP_CONTENT);
        parm.addRule(RelativeLayout.RIGHT_OF,txtHeadTitle.getId());
        parm.addRule(RelativeLayout.CENTER_VERTICAL);
        img_logo.setLayoutParams(parm);
        img_logo.setVisibility(View.VISIBLE);

上面在标题的右边显示一个imageview。

你可能感兴趣的:(android开发)