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



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



父xml文件:

  1. <?

    xml version="1.0" encoding="utf-8"?>

  2. <ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:background="@color/background" >
  6. <!-- 子布局由代码动态生成 -->
  7. <LinearLayout
  8. android:id="@+id/layout_CONTENT"
  9. android:layout_width="match_parent"
  10. android:layout_height="match_parent"
  11. android:padding="@dimen/content_padding" >
  12. <LinearLayout
  13. android:id="@+id/activity_service_select"
  14. android:layout_width="match_parent"
  15. android:layout_height="wrap_content"
  16. android:layout_margin="@dimen/table_margin"
  17. android:background="@color/table_background"
  18. android:orientation="vertical"
  19. android:padding="@dimen/table_padding" >
  20. </LinearLayout>
  21. </LinearLayout>
  22. </ScrollView>

子xml文件:

  1. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2. android:layout_width="match_parent"
  3. android:layout_height="@dimen/row_height"
  4. android:layout_marginBottom="@dimen/row_margin"
  5. android:background="@drawable/row_selector"
  6. android:paddingLeft="@dimen/row_padding_left"
  7. android:paddingRight="@dimen/row_padding_right" >
  8. <TextView
  9. android:id="@+id/tv_select_item"
  10. style="@style/text_18"
  11. android:layout_width="match_parent"
  12. android:layout_height="@dimen/row_height"
  13. android:layout_marginBottom="@dimen/row_margin"
  14. android:background="@drawable/row_selector"
  15. android:gravity="center_vertical"
  16. android:textColor="@drawable/row_text_selector" />
  17. <ImageView
  18. android:id="@+id/iv_icon"
  19. android:layout_width="wrap_content"
  20. android:layout_height="match_parent"
  21. android:layout_alignParentRight="true"
  22. android:duplicateParentState="true"
  23. android:gravity="center_vertical"
  24. android:src="@drawable/go" />
  25. </RelativeLayout>

代码中引用:

  1. private ViewGroup mLayout;
  2. private int img[] = {R.drawable.zikao1,R.drawable.zikao2,R.drawable.zikao3,R.drawable.zikao4};
  3. /* (non-Javadoc)
  4. * @see app.ui.TitleActivity#onCreate(android.os.Bundle)
  5. */
  6. @Override
  7. protected void onCreate(Bundle savedInstanceState) {
  8. super.onCreate(savedInstanceState);
  9. setUpViews();
  10. }
  11. private void setUpViews()
  12. {
  13. setContentView(R.layout.activity_service_select);
  14. setTitle(R.string.text_select);
  15. showBackwardView(R.string.button_backward, true);
  16. mLayout = (ViewGroup)findViewById(R.id.activity_service_select);
  17. final String [] mSelfSelect = getResources().getStringArray(R.array.text_self_select);
  18. // 须要布局的行数
  19. final int rowCount = mSelfSelect.length;
  20. for (int i = 0; i < rowCount; i++) {
  21. final LinearLayout linearLayout = new LinearLayout(this);
  22. View.inflate(this, R.layout.service_examvaluable_item, linearLayout);
  23. final View view = linearLayout.getChildAt(0);
  24. view.setTag(i+1);
  25. view.setOnClickListener(this);
  26. Drawable drawable= getResources().getDrawable(img[i]);
  27. drawable.setBounds(0, 0, drawable.getMinimumWidth(), drawable.getMinimumHeight());
  28. final TextView mTextView = (TextView) linearLayout.findViewById(R.id.tv_select_item);
  29. mTextView.setCompoundDrawables(drawable,null,null,null);//设置TextView的drawableleft
  30. mTextView.setCompoundDrawablePadding(10);//设置图片和text之间的间距
  31. mTextView.setText(mSelfSelect[i]);
  32. // 加入到屏幕布局
  33. LayoutParams layoutParams = new LinearLayout.LayoutParams(LayoutParams.MATCH_PARENT,LayoutParams.MATCH_PARENT);
  34. mLayout.addView(linearLayout, layoutParams);
  35. }
  36. }

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

解决方式:

[java] view
plain
copy

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

类似调用方法例如以下:

1.在XML中使用

[java] view
plain
copy

  1. android:drawableLeft="@drawable/icon"

2.代码中动态变化

[java] view
plain
copy

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

參考还有一个函数:

[java] view
plain
copy

  1. public void setCompoundDrawablesWithIntrinsicBounds (Drawable left,
  2. Drawable top, Drawable right, Drawable bottom)

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

  1. 动态为TextView控件设置drawableLeft图标,并设置间距

    效果图: 重要属性: textView.setCompoundDrawablePadding(4);//设置图片和text之间的间距 textView.setPadding(-5, 0, 0, 0); ...

  2. 两个TextView控件居中显示

    通过一个线性布局将两个TextView控件包装在一起,设置LinearLayout的layout_centerInParent属性为true即可.代码如下 <LinearLayout andro ...

  3. 注意Android里TextView控件的一个小坑,用android:theme来设置样式时动态载入的layout会丢失该样式

    注意Android里TextView控件的一个小坑,用android:theme来设置样式时动态载入的layout会丢失该样式 这个坑,必须要注意呀, 比如在用ListView的时候,如果在List_ ...

  4. android中的TextView控件

    我以前是搞ssh开发的,现在在搞android开发,所以简单学习了一下,对于自己所了解的做一个记录,也算是一个笔记吧,如果有什么不对的,希望大家给予一定的指导.  一.TextView的基本使用 Te ...

  5. android课程第一节(TextView控件使用)

    TextView控件使用 一.TextView基本使用(创建方式) 1.在程序中创建TextView对象 如下代码: @Override protected void onCreate(Bundle ...

  6. 在ASP.NET中动态加载内容(用户控件和模板)

    在ASP.NET中动态加载内容(用户控件和模板) 要点: 1. 使用Page.ParseControl 2. 使用base.LoadControl 第一部分:加载模板 下 面是一个模板“<tab ...

  7. WPF中动态加载XAML中的控件

    原文:WPF中动态加载XAML中的控件 using System; using System.Collections.Generic; using System.Linq; using System. ...

  8. android软件开发之TextView控件常用属性

    TextView控件 text属性,设置显示的文本 textColor:设置文本颜色 textSize:设置文本字体大小 autoLink:设置文本为电话,URL连接等的时候是否显示为可点击的链接 c ...

  9. Android学习笔记50:使用WebView控件浏览网页

    在Android中,可以使用Webview控件来浏览网页.通过使用该控件,我们可以自制一个简单的浏览器,运行效果如图1所示. 图1 运行效果 1.WebView 在使用WebView控件时,首先需要在 ...

随机推荐

  1. Column store index 列数据如何匹配成行数据?

    SQL Server 2012引入了列存储索引,对每列的数据进行分组和存储,然后联接所有列以完成整个索引.这不同于传统索引,传统索引对每行的数据进行分组和存储,然后联接所有行以完成整个索引. 在访问基 ...

  2. Gas Station|leetcode 贪心

    贪心:尽量将gas[i]-cost[i]>0的放在前面,gas[i]-cost[i]<0的放在后面.(路程的前面有汽油剩下,耗汽油的放在路程的后面). 能否全程通过的 条件 是:sum(g ...

  3. C++ 中mallon动态分配内存大小用法

    #include<iostream> using namespace std; int main(){ char *s; int n; cin>>n; s= (char *) ...

  4. jQuery 快速结束当前动画

    当需要快速结束一个当前正在执行的jquery 动画时(还没执行完成),如 fadeOut(),可以在执行当前动画的对象上执行 stop(true);方法 如: <script type=&quo ...

  5. Http方式获取网络数据

    通过以下代码可以根据网址获取网页的html数据,安卓中获取网络数据的时候会用到,而且会用Java中的sax方式解析获取到数据.(sax解析主要是解析xml)具体代码如下: package com.wy ...

  6. C--全排列的实现(递归方法) 傻子也能看懂的

      假设数组含有n个元素,则提取数组中的每一个元素做一次头元素,然后全排列除数组中除第一个元素之外的所有元素,这样就达到了对数组中所有元素进行全排列的得目的.[这句话才是重点!] 比如 1,2,3.的 ...

  7. Android学习笔记:进度条ProgressBar的使用以及与AsyncTask的配合使用

    ProgressBar时android用于显示进度的组件.当执行一个比较耗时的操作(如io操作.网络操作等),为了避免界面没有变化让用户体验降低,提供一个进度条可以让用户知道程序还在运行. 一.Pro ...

  8. 更改ORACLE 用户的 expired状态

    oracle中, 经常用户的状态会变成locked, expired 等状态, 这种情况下怎么处理呢? 首先, 如果是locked状态还好办, DBA直接执行alter user scott acco ...

  9. Ch06 验证

    6.1  服务器端验证 6.1.1  Data Annotations验证 6.1.2  扩展ModelMetadtaProvider 6.2  客户端验证 6.2.1  客户端验证初步 6.2.2  ...

  10. javascript笔记整理(数据类型强制/隐式转换 )

    A.数据类型强制转换 1.转换为数值类型 Number(参数) 把任何的类型转换为数值类型 A.如果是布尔值,false为0,true为1 var a=false;alert(Number(a)); ...