当前位置:首页 > Android > 正文内容

Android动态布局,并动态为TextView控件设置drawableLeft、drawableRight等属性添加图标

jsc9年前 (2016-04-01)Android4424

1405913786_9066.jpg

注:(图中每一个条目和图标都是由代码动态生成)


代码动态布局,并需要为每一个条目设置图标,此时用到了 android:drawableLeft="@drawable/icon" 


父xml文件:

<?xml version="1.0" encoding="utf-8"?>  
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"  
    android:layout_width="match_parent"  
    android:layout_height="match_parent"  
    android:background="@color/background" >  
    <!-- 子布局由代码动态生成 -->  
    <LinearLayout  
        android:id="@+id/layout_CONTENT"  
        android:layout_width="match_parent"  
        android:layout_height="match_parent"  
        android:padding="@dimen/content_padding" >  
  
        <LinearLayout  
            android:id="@+id/activity_service_select"  
            android:layout_width="match_parent"  
            android:layout_height="wrap_content"  
            android:layout_margin="@dimen/table_margin"  
            android:background="@color/table_background"  
            android:orientation="vertical"  
            android:padding="@dimen/table_padding" >  
        </LinearLayout>  
    </LinearLayout>  
  
</ScrollView>


子xml文件:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"  
    android:layout_width="match_parent"  
    android:layout_height="@dimen/row_height"  
    android:layout_marginBottom="@dimen/row_margin"  
    android:background="@drawable/row_selector"  
    android:paddingLeft="@dimen/row_padding_left"  
    android:paddingRight="@dimen/row_padding_right" >  
  
    <TextView  
        android:id="@+id/tv_select_item"  
        style="@style/text_18"  
        android:layout_width="match_parent"  
        android:layout_height="@dimen/row_height"  
        android:layout_marginBottom="@dimen/row_margin"  
        android:background="@drawable/row_selector"  
        android:gravity="center_vertical"  
        android:textColor="@drawable/row_text_selector" />  
  
    <ImageView  
        android:id="@+id/iv_icon"  
        android:layout_width="wrap_content"  
        android:layout_height="match_parent"  
        android:layout_alignParentRight="true"  
        android:duplicateParentState="true"  
        android:gravity="center_vertical"  
        android:src="@drawable/go" />  
  
</RelativeLayout>

代码中引用:

private ViewGroup mLayout;  
    private int img[] = {R.drawable.zikao1,R.drawable.zikao2,R.drawable.zikao3,R.drawable.zikao4};  
    /* (non-Javadoc) 
     * @see app.ui.TitleActivity#onCreate(android.os.Bundle) 
     */  
    @Override  
    protected void onCreate(Bundle savedInstanceState) {  
        super.onCreate(savedInstanceState);  
        setUpViews();  
    }  
  
    private void setUpViews()  
    {  
        setContentView(R.layout.activity_service_select);  
        setTitle(R.string.text_select);  
        showBackwardView(R.string.button_backward, true);  
        mLayout = (ViewGroup)findViewById(R.id.activity_service_select);  
        final String [] mSelfSelect = getResources().getStringArray(R.array.text_self_select);  
        // 需要布局的行数  
        final int rowCount = mSelfSelect.length;  
        for (int i = 0; i < rowCount; i++) {  
            final LinearLayout linearLayout = new LinearLayout(this);  
            View.inflate(this, R.layout.service_examvaluable_item, linearLayout);  
            final View view = linearLayout.getChildAt(0);  
            view.setTag(i+1);  
            view.setOnClickListener(this);  
  
            Drawable drawable= getResources().getDrawable(img[i]);  
            drawable.setBounds(0, 0, drawable.getMinimumWidth(), drawable.getMinimumHeight());  
  
            final TextView mTextView = (TextView) linearLayout.findViewById(R.id.tv_select_item);  
            mTextView.setCompoundDrawables(drawable,null,null,null);//设置TextView的drawableleft  
            mTextView.setCompoundDrawablePadding(10);//设置图片和text之间的间距  
            mTextView.setText(mSelfSelect[i]);  
            // 添加到屏幕布局  
            LayoutParams layoutParams = new LinearLayout.LayoutParams(LayoutParams.MATCH_PARENT,LayoutParams.MATCH_PARENT);  
            mLayout.addView(linearLayout, layoutParams);  
        }  
    }

在程序中直接取出子xml中TextView中的id,并动态设置改变了 DrawableLeft。

解决方案:

public void  setCompoundDrawables  (Drawable left, Drawable top, Drawable right, Drawable bottom);

类似调用方法如下:

1.在XML中使用

android:drawableLeft="@drawable/icon"

2.代码中动态变化

Drawable drawable= getResources().getDrawable(R.drawable.drawable);  
drawable.setBounds(0, 0, drawable.getMinimumWidth(), drawable.getMinimumHeight());  
myTextview.setCompoundDrawables(drawable,null,null,null);

    参考另一个函数:

public void setCompoundDrawablesWithIntrinsicBounds (Drawable left,  
Drawable top, Drawable right, Drawable bottom)


扫描二维码推送至手机访问。

版权声明:本文由微小站发布,如需转载请注明出处。

本文链接:https://jsc0.com/post/46.html

标签: TextView
分享给朋友:

“Android动态布局,并动态为TextView控件设置drawableLeft、drawableRight等属性添加图标” 的相关文章

ViewPager + HorizontalScrollView 实现可滚动的标签栏

ViewPager + HorizontalScrollView 实现可滚动的标签栏

这是一个可滑动的标签栏的自定义控件,参考此文章http://blog.csdn.net/fx_sky/article/details/8990573,我将主要的功能整合成一个类,配上2个特定的布局即可使用。 效果图:    主要布局文件:<?xml&nb...

Android采用SharedPreferences保存用户登录信息

Android平台给我们提供了一个SharedPreferences类,它是一个轻量级的存储类,特别适合用于保存软件配置参数。使用 SharedPreferences保存数据,其背后是用xml文件存放数据,文件存放在/data/data/<package name>/shared...

Android 更换皮肤思路及解决方案

Android 更换皮肤思路及解决方案

本篇博客要给大家分享的一个关于Android应用换肤的Demo,大家可以到我的github去下载demo,以后博文涉及到的代码均会上传到github中统一管理。 github地址:https://github.com/devilWwj/Android-skin-upda...

Android中的消息通知(NotificationManager和Notification)

下面来谈谈notification,这个notification一般用在电话,短信,邮件,闹钟铃声,在手机的状态栏上就会出现一个小图标,提 示用户处理这个通知,这时手从上方滑动状态栏就可以展开并处理这个快讯。已添加的Notification.Builder,使其更容易构建通知。 notifica...

采用SharedPreferences保存用户偏好设置参数和读取设置参数

采用SharedPreferences保存用户偏好设置参数和读取设置参数

Android SDK支持那些文件存储技术? 1. 使用SharedPreferences保存key-value类型的数据 2. 流文件存储(使用openFileOutput和openFileInput方法,或FileInputStream和FileO...

Android SharedPreferences PreperenceScreen 偏好数据存取

SharedPreferences是一个接口,程序是无法创建SharedPreferences实例的,1、Context.getSharedPreferences(String name,int mode)来得到一个指定name的SharedPreferences实例2、PreferenceMana...