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

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

jsc10年前 (2016-04-01)Android4685

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://www.jsc0.com/post/46.html

标签: TextView
分享给朋友:

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

android异步任务详解 AsynTask

android异步任务详解 AsynTask

android提供了一套专门用于异步处理的类。即:AynsTask类。使用这个类可以为耗时程序开辟一个新线程进行处理,处理完时返回。其实,AsynTask类就是对Thread类的一个封装,并且加入了一些新的方法。编程时,两者都可以实现同样的功能。本文后面将对AsynTask和Thread...

android json解析及简单例子

JSON的定义:       一种轻量级的数据交换格式,具有良好的可读和便于快速编写的特性。业内主流技术为其提供了完整的解决方案(有点类似于正则表达式 ,获得了当今大部分语言的支持),从而可以在不同平台间进行数据交换。JSON采用兼容性很高的文本格式...

下拉刷新及滚动到底部加载更多的Listview使用

下拉刷新及滚动到底部加载更多的Listview使用

本文主要介绍可同时实现下拉刷新及滑动到底部加载更多的ListView的使用。 该ListView优点包括:a. 可自定义下拉响应事件(如下拉刷新)  b.可自定义滚动到底部响应的事件(如滑动到底部加载更多)  c.可自定义丰富的样式  d....

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

采用SharedPreferences保存用户偏好设置参数-------------------------------------------------1.eclipse就是通过xml来保存用户的偏好设置-->window-->perfences-------------------...

Activity之间数据交流(onActivityResult的用法)

Activity之间数据交流(onActivityResult的用法)

主要功能: 在一个主界面(主Activity)上能连接往许多不同子功能模块(子Activity上去),当子模块的事情做完之后就回到主界面,或许还同时返回一些子模块完成的数据交给主Activity处理。这样的数据交流就要用到回调函数onActivityResult。...