安卓开发之自定义控件

新建布局文件,在布局文件中添加界面信息。

1.在其他布局中引用布局文件的方法:

2.自定义控件的控件写法:


public class TableLayout extends LinearLayout

{

    public TableLayout(Context context,AttrbuteSet attrs)

    {

        super(context,attrs);

        LayoutInflater.from(context).inflater(R.layout.name,this);

    }

}

在此类中,为了实现代码的复用,可以使用getContext获取上下文环境.

如:((Activity)getContext()).finish();

你可能感兴趣的:(安卓第一行代码)