zoukankan      html  css  js  c++  java
  • android 怎么动态设置button 的style

    网上找了很多,还是没有直接的解决办法,button没有setstyle这个方法。因此我的解决办法如下:

    直接动态设置各个属性

    Button themeBtn = new Button(this);
                themeBtn.setText(entry.getKey());
                LayoutParams lparams = new LayoutParams(LayoutParams.WRAP_CONTENT,LayoutParams.MATCH_PARENT);
                themeBtn.setLayoutParams(lparams);
                themeBtn.setTextAppearance(this, R.style.ImageCategoryThemeBtn);
                themeBtn.setPadding(DensityUtils.dp2px(this, 8), 0, DensityUtils.dp2px(this, 8), 0);
                themeBtn.setBackgroundResource(R.drawable.selector_bt_gray2blue);
                v_theme.addView(themeBtn);

    style:

    <style name="ImageCategoryThemeBtn" parent="@android:style/Widget.Button">
            <item name="android:textColor">@color/image_theme</item>
            <item name="android:textSize">@dimen/imageThemeBtnTextSize</item>
        </style>
  • 相关阅读:
    快速排序
    09-HQL:Group、Order
    08-表属性操作
    07-数据导出及动态分区
    06-数据加载
    05-Hive数据操作
    04-表操作2
    03-表操作1
    [原创]IPV4分组的格式
    mysql中having和where的区别
  • 原文地址:https://www.cnblogs.com/feijian/p/4531333.html
Copyright © 2011-2022 走看看