Android 自定义View时使用TypedArray配置样式属性详细介绍

 更新时间:2016年11月11日 11:22:38   作者:Snail  
这篇文章主要介绍了Android 自定义View时使用TypedArray配置样式属性详细介绍的相关资料,需要的朋友可以参考下

 Android 自定义View时使用TypedArray配置样式属性详细介绍

      在自定义view时为了提高复用性和扩展性,可以为自定义的view添加样式属性的配置,比如自定义图片资源、文字大小、控件属性等,就这需要用到TypedArray类,下面以一个自定义的可点击扩展和收缩的TextView为例记录下这个类的简单使用。

先上效果图:

点击以后为


再贴代码:

1.自定义view类;

/** 
 * @title ExpandTextView 
 * @description 可扩展TextView,可以通过设置ExpandTextViewStyle来自定义展开图片、收起图片和最小展示的行数 
 */ 
public class ExpandTextView extends LinearLayout implements OnClickListener { 
  /** 
   * 默认最少展示的行数 
   */ 
  private int defaultMinLines; 
  /** 
   * 是否展开 
   */ 
  private boolean mCollapsed = true; 
  /** 
   * 是否重新布局 
   */ 
  private boolean mRelayout = false; 
 
  private View expandView; 
  private TextView expandText; 
  private ImageView expandImg; 
  private Drawable mExpandDrawable; 
  private Drawable mCollapseDrawable; 
 
  public ExpandTextView(Context context) { 
    this(context, null); 
  } 
 
  public ExpandTextView(Context context, AttributeSet attrs) { 
    super(context, attrs); 
    init(attrs); 
  } 
 
  private void init(AttributeSet attrs) { 
    expandView = LayoutInflater.from(getContext()).inflate( 
        R.layout.pt__expand_textview, null); 
    expandText = (TextView) expandView.findViewById(R.id.expand_text); 
    expandText.setOnClickListener(this); 
    expandImg = (ImageView) expandView.findViewById(R.id.expand_img); 
    expandImg.setOnClickListener(this); 
 
    TypedArray a = getContext().obtainStyledAttributes(attrs, 
        R.styleable.ExpandTextViewStyle); 
    // 自定义图片资源 
    mExpandDrawable = getResources().getDrawable( 
        a.getResourceId(R.styleable.ExpandTextViewStyle_expand, 
            R.drawable.pt__ic_expand)); 
    expandImg.setBackgroundDrawable(mExpandDrawable); 
    mCollapseDrawable = getResources().getDrawable( 
        a.getResourceId(R.styleable.ExpandTextViewStyle_collapse, 
            R.drawable.pt__ic_collapse)); 
    // 自定义最小行数 
    defaultMinLines = a.getInt( 
        R.styleable.ExpandTextViewStyle_default_min_lines, 2); 
    a.recycle(); 
 
    LinearLayout.LayoutParams params = new LayoutParams( 
        LayoutParams.FILL_PARENT, LayoutParams.WRAP_CONTENT); 
    params.gravity = Gravity.CENTER; 
    addView(expandView, params); 
  } 
 
  @Override 
  protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) { 
    if (!mRelayout) { 
      super.onMeasure(widthMeasureSpec, heightMeasureSpec); 
      return; 
    } 
    mRelayout = false; 
    expandText.setMaxLines(Integer.MAX_VALUE); 
    expandImg.setVisibility(View.GONE); 
    super.onMeasure(widthMeasureSpec, heightMeasureSpec); 
    if (expandText.getLineCount() <= defaultMinLines) { 
      return; 
    } 
    if (mCollapsed) { 
      expandText.setMaxLines(defaultMinLines); 
    } 
    expandImg.setVisibility(View.VISIBLE); 
    super.onMeasure(widthMeasureSpec, heightMeasureSpec); 
  } 
 
  public void setText(CharSequence text) { 
    mRelayout = true; 
    expandText.setText(text); 
  } 
 
  public void setText(int resId) { 
    this.setText(getContext().getString(resId)); 
  } 
 
  @Override 
  public void onClick(View view) { 
    if (expandImg.getVisibility() != View.VISIBLE) { 
      return; 
    } 
    mCollapsed = !mCollapsed; 
    expandImg.setBackgroundDrawable(mCollapsed ? mExpandDrawable 
        : mCollapseDrawable); 
    expandText 
        .setMaxLines(mCollapsed ? defaultMinLines : Integer.MAX_VALUE); 
  } 
} 

2.在res/values下添加的attrs.xml文件中定义样式属性;

<resources> 
 
  <!-- ******************************可扩展ExpandTextView样式******************************* --> 
  <declare-styleable name="ExpandTextViewStyle"> 
 
    <!-- 展开图片 --> 
    <attr name="expand" format="reference" /> 
    <!-- 关闭图片 --> 
    <attr name="collapse" format="reference" /> 
    <!-- 最小行数 --> 
    <attr name="default_min_lines" format="integer" /> 
  </declare-styleable> 
 
</resources> 

3.在res/values下的style.xml文件中定义样式,可替换图片资源;

<!-- 可扩展ExpandTextView样式 --> 
  <style name="ExpandTextViewStyle"> 
    <item name="expand">@drawable/pt__ic_expand</item> 
    <item name="collapse">@drawable/pt__ic_collapse</item> 
    <item name="default_min_lines">3</item> 
  </style> 

4.布局文件;

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
  xmlns:custom="http://schemas.android.com/apk/res/com.example.typedarraytest" 
  android:layout_width="match_parent" 
  android:layout_height="match_parent" 
  android:paddingBottom="@dimen/activity_vertical_margin" 
  android:paddingLeft="@dimen/activity_horizontal_margin" 
  android:paddingRight="@dimen/activity_horizontal_margin" 
  android:paddingTop="@dimen/activity_vertical_margin" > 
 
  <com.example.typedarraytest.ExpandTextView 
    android:id="@+id/expand_text_view" 
    style="@style/ExpandTextViewStyle" 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:layout_margin="8dp" 
    custom:default_min_lines="2" /> 
 
</RelativeLayout> 

下面简单描述下实现步骤:

1.先定义好attrs.xml文件;

2.在自定义view类中获取定义的样式属性,下面这几行代码是关键:

TypedArray a = getContext().obtainStyledAttributes(attrs, 
    R.styleable.ExpandTextViewStyle); 
// 自定义图片资源 
mExpandDrawable = getResources().getDrawable( 
    a.getResourceId(R.styleable.ExpandTextViewStyle_expand, 
        R.drawable.pt__ic_expand)); 
expandImg.setBackgroundDrawable(mExpandDrawable); 
mCollapseDrawable = getResources().getDrawable( 
    a.getResourceId(R.styleable.ExpandTextViewStyle_collapse, 
        R.drawable.pt__ic_collapse)); 
// 自定义最小行数 
defaultMinLines = a.getInt( 
    R.styleable.ExpandTextViewStyle_default_min_lines, 2); 
a.recycle(); 

3.既可以直接在style.xml中定义样式然后使用,也可以在布局文件中配置属性:

custom:default_min_lines="2"

要使用上面的属性,需要在布局文件的根节点中添加如下属性:

xmlns:custom=http://schemas.android.com/apk/res/com.example.typedarraytest

格式:xmlns:自定义关键字(用于在控件中使用属性,同android)=http://schemas.android.com/apk/res/包名

感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!

相关文章

  • Android ContentProvider基础应用详解

    Android ContentProvider基础应用详解

    ContentProvider是android四大组件之一。它是不同应用程序之间交换数据的标准api,ContentProvider以某种uri的形式对外提供数据,允许其它应用程序对其访问或者修改数据。本文将介绍ContentProvider的基础应用,感兴趣的可以学习一下
    2021-12-12
  • Android开发之自定义星星评分控件RatingBar用法示例

    Android开发之自定义星星评分控件RatingBar用法示例

    这篇文章主要介绍了Android开发之自定义星星评分控件RatingBar用法,结合具体实例形式分析了Android自定义评分控件的具体实现步骤以及功能、布局相关操作技巧,需要的朋友可以参考下
    2019-03-03
  • Android开发之menu菜单

    Android开发之menu菜单

    Android系统里面有四种类型的菜单:options menu(选项菜单),context menu(上下文菜单),sub menu(子菜单),Popup menu(弹出菜单),本文给大家详解android开发之menu菜单,感兴趣的朋友一起学习吧
    2015-11-11
  • Android获取系统储存以及内存信息的方法(一)

    Android获取系统储存以及内存信息的方法(一)

    这篇文章主要为大家详细介绍了Android获取系统储存以及内存信息的方法,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2017-10-10
  • Android 避免APP启动闪黑屏的解决办法(Theme和Style)

    Android 避免APP启动闪黑屏的解决办法(Theme和Style)

    闪黑屏的原因主要是我们启动Activity的时候,需要跑完onCreate和onResume才会显示界面
    2013-07-07
  • Android实现录音方法(仿微信语音、麦克风录音、发送语音、解决5.0以上BUG)

    Android实现录音方法(仿微信语音、麦克风录音、发送语音、解决5.0以上BUG)

    大家平时在使用微信qq聊天时经常会发送语音功能,今天小编给大家带来了基于android实现录音的方法仿微信语音、麦克风录音、发送语音、解决5.0以上BUG,需要的朋友参考下吧
    2018-04-04
  • Android中recyclerView底部添加透明渐变效果

    Android中recyclerView底部添加透明渐变效果

    这篇文章主要给大家介绍了关于Android中recyclerView如何实现底部添加透明渐变效果的相关资料,文中通过示例代码介绍的非常详细,对各位Android开发者们具有一定的参考学习价值,需要的朋友们下面来一起看看吧。
    2018-04-04
  • Android UTF-8转码实例详解

    Android UTF-8转码实例详解

    这篇文章主要介绍了Android UTF-8转码实例详解的相关资料,需要的朋友可以参考下
    2017-03-03
  • SQLite数据库在Android中的使用小结

    SQLite数据库在Android中的使用小结

    SQLIte是一款轻型的数据库,占用资源非常低,在嵌入式设备中,可能只需几百k的内存,这篇文章主要介绍了SQLite数据库在Android中的使用,需要的朋友可以参考下
    2024-07-07
  • Android 分享控件的实现代码

    Android 分享控件的实现代码

    这篇文章主要介绍了Android 分享控件的实现代码,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧
    2018-03-03

最新评论