我是靠谱客的博主 冷酷小懒猪,最近开发中收集的这篇文章主要介绍代码里设置布局属性,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

/设置布局文件的高度,控件为FrameLayout

FrameLayout mFrameLayout = holder.getView(R.id.fl_bill_or_image);
ViewGroup.LayoutParams lp = mFrameLayout.getLayoutParams();
//相当于80dp
lp.height = 115;
mFrameLayout.setLayoutParams(lp);

//获取WRAP_CONTENT属性

LinearLayout.LayoutParams.WRAP_CONTENT

控件是否可见:

if(tv_a.getVisibility()==View.VISIBLE)

可见:

view.setVisibility(View.VISIBLE);

//设置背景色,控件例子TextVIew

holder.setBackgroundColor(R.id.tv_line, ContextCompat.getColor(getContext(), R.color.lightblue));

//设置Background:
ImageView productImage = holder.getView(R.id.iv_product_image);

productImage.setBackground(ContextCompat.getDrawable(getContext(),R.drawable.iv_fillet));

//清除图片资源,控件例子ImageView

productImage.setImageBitmap(null);

//设置图片不显示

productImage.setVisibility(View.GONE);

在代码里利用Strings的字符串 :

BaseApplication.getContext().getString(R.string.dialog_message)

关闭软键盘弹出:

InputMethodManager imm = (InputMethodManager) getContext()
        .getSystemService(Context.INPUT_METHOD_SERVICE);

imm.hideSoftInputFromWindow(etChargeMoney.getWindowToken(), 0);

使用资源颜色: 

tvActualMoney.setTextColor(ContextCompat.getColor(getContext(), R.color.textOrange) );

设置系统默认背景色:

tvShouldMoney.setTextColor(0x8A000000);

最后

以上就是冷酷小懒猪为你收集整理的代码里设置布局属性的全部内容,希望文章能够帮你解决代码里设置布局属性所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(39)

评论列表共有 0 条评论

立即
投稿
返回
顶部