首页 > 代码库 > 自定义控件
自定义控件
引入控件:
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>
自定义控件
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。