root.xml

<?xml version="1.0" encoding="utf-8"?> <RelativeLayout  xmlns:android="http://schemas.android.com/apk/res/android"  android:id="@+id/rootLayout"  android:layout_width="fill_parent"  android:layout_height="fill_parent">  <LinearLayout   android:id="@+id/headingLayout"   android:layout_width="wrap_content"   android:layout_height="wrap_content">    <include     android:layout_width="wrap_content"     android:layout_height="wrap_content"     layout="@layout/heading_layout" />  </LinearLayout> <RelativeLayout>

heading_layout.xml

<?xml version="1.0" encoding="utf-8"?> <merge  xmlns:android="http://schemas.android.com/apk/res/android">   <RelativeLayout    android:layout_width="fill_parent"    android:layout_height="wrap_content">     <ImageView      android:id="@+id/titleImg"      android:src="@drawable/bg_cell"      android:layout_width="fill_parent"      android:layout_height="wrap_content" />     <TextView      android:id="@+id/titleTxt"      android:layout_centerInParent="true"      android:layout_width="wrap_content"      android:layout_height="wrap_content" />   </RelativeLayout> </merge>

使用 setContentView(R.layout.root)

或者

LayoutInflater inflater = (LayoutInflater)getSystemService(Context.LAYOUT_INFLATER_SERVICE); inflater.inflate(R.layout.home, rootLayout);

更多相关文章

  1. 代码中设置drawableleft
  2. android 3.0 隐藏 系统标题栏
  3. Android开发中activity切换动画的实现
  4. Android(安卓)学习 笔记_05. 文件下载
  5. Android中直播视频技术探究之—摄像头Camera视频源数据采集解析
  6. 技术博客汇总
  7. android 2.3 wifi (一)
  8. AndRoid Notification的清空和修改
  9. Android中的Chronometer

随机推荐

  1. Android 实现全屏和无标题栏的显示
  2. Google Android(安卓)SDK开发范例-------
  3. Android(安卓)NDK 知识系列(三)
  4. 用android:clipChildren来实现红心变大特
  5. Android Library Project 使用问题总结
  6. android系统中自带的各种图标
  7. android 代码混淆之后 微信分享不起作用
  8. Force Localize an Application on Andro
  9. Android NDK 环境搭建(Native Developmen
  10. Android(安卓)SurfaceView