Android自助餐之自定义控件从layout自定义控件

Posted -_-void

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android自助餐之自定义控件从layout自定义控件相关的知识,希望对你有一定的参考价值。

android自助餐之自定义控件(一)从layout自定义控件

从layout自定义控件

  1. layout中新建一个layout

    <?xml version="1.0" encoding="utf-8"?>
    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
     android:layout_width="match_parent"
     android:layout_height="match_parent" >
     <TextView
         android:id="@+id/tv_text"
         android:layout_width="wrap_content"
         android:layout_height="wrap_content"/>
     <ImageView 
         android:id="@+id/iv_image"
         android:layout_width="wrap_content"
         android:layout_height="wrap_content"
         android:layout_below="@+id/tv_text"/>
    </RelativeLayout>
  2. 在src中新建一个类
    所继承的类与上一步layout的根view相同

    public class CustomView extends RelativeLayout{
    
    //layout中包含的view
    private View mRootView;
    private TextView mTextView;
    private ImageView mImageView;
    
    //重载一参构造方法
    public CustomView(Context context) {
        this(context,null);
    }
    
    //重载两参构造方法
    public CustomView(Context context, AttributeSet attrs) {
        super(context, attrs);
        mRootView=LayoutInflater.from(context).inflate(R.layout.layout_view, this,true);
        mTextView=(TextView) mRootView.findViewById(R.id.tv_text);
        mImageView=(ImageView) mRootView.findViewById(R.id.iv_image);
    }
    
    //自定义方法
    public void setText(String text){
        mTextView.setText(text);
    }
    
    //自定义方法
    public void setImageResource(int resId){
        mImageView.setImageResource(resId);
    }
    }
  3. 现在可以把它当做普通控件使用了。

以上是关于Android自助餐之自定义控件从layout自定义控件的主要内容,如果未能解决你的问题,请参考以下文章

自定义控件

Android自定义View之自定义组合控件

Android自定义View之自定义组合控件

转android UI进阶之自定义组合控件

Android 自定义View之自绘控件

Android之自定义控件-下拉刷新