自定义控件

Posted yl007

tags:

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

引入控件:

  1、在activity_xml中添加<include layout="@layout/title">

  2、隐藏自带标题栏:在onCreate()中添加代码:ActionBar actionBar = getSupportActionBar();

                         if(actionBar != null){actionBar.hide();}

自定义控件:

1 public class TitleLayout extends LinearLayout{
2     public TitleLayout(Context context,AttributeSet attrs){
3         super(context,attrs);
4         LayoutInflater.from(context).inflate(R.layout.title,this);  //通过context构建LayoutInflater对象,调用inflate方法动态加载布局。
5     }
6 }

  添加自定义控件:

1 <LinearLayout......
2     <com.example.uicustimvies.TitleLayout  //指明控件的完整包名
3         android:layout_width="match_parent"
4         android:layout_height="warp_parent" />
5 </LinearLayout>

 

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

VSCode自定义代码片段(vue主模板)

VSCode自定义代码片段——声明函数

VSCode自定义代码片段——.vue文件的模板

VSCode自定义代码片段——git命令操作一个完整流程

VSCode自定义代码片段8——声明函数

VSCode自定义代码片段1——vue主模板