Android RelativeLayout布局详解

这几天一直被android的布局困扰,网上也没有找到好的例子,项目中需要做一个 图片 标题 摘要的列表,通过多次试验终于用RelativeLayout完美的解决了这个布局问题,其实关键就在于 android:layout_toRightOf android:layout_below android:layout_above这个几个属性。

通过灵活运用这几个属性就可以实现各种复杂的布局

例如 下面代码可以实现一个 图片在左边 右面是一个标题 标题下是一行描述的 典型布局

<?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:background="@drawable/rowbg" > <ImageView android:id="@+id/channellogo" android:layout_height="wrap_content" android:src="@drawable/icon" android:layout_width="wrap_content"> </ImageView> <TextView android:id="@+id/startime" android:layout_width="wrap_content" android:textSize="16dp" android:layout_height="wrap_content" android:padding="3dp" android:scrollbars="vertical" android:textColorHighlight="#ff0000ff" android:text="title" android:layout_toRightOf="@+id/channellogo" /> <TextView android:id="@+id/program" android:layout_width="wrap_content" android:textSize="16dp" android:layout_height="wrap_content" android:padding="3dp" android:scrollbars="vertical" android:textColorHighlight="#ffff0000" android:layout_toRightOf="@+id/channellogo" android:text="description" android:layout_below="@+id/startime"/> </RelativeLayout>

更多相关文章

  1. listview android:cacheColorHint,listSelector属性作用
  2. Android 中两种方法设置android:gravity 和 android:layout_grav
  3. android RelativeLayout 属性学习
  4. android线性布局之比例
  5. android EditText中inputType的属性列表
  6. Android ListView重要美化属性
  7. Android: TextView常用属性的用法详解

随机推荐

  1. 应用系统样式延伸
  2. 《Expert Android》关键点摘录之二
  3. 简单播放系统提示音 android
  4. Android Binder设计与实现 – 设计篇
  5. android - Shader 着色器 翻译
  6. Android 技巧 - 网络可用性侦测
  7. Android全屏设置
  8. ReactNative js判断android还是ios
  9. Android实时抓取日志,生成文件
  10. Android UI控件的初识