Android Relative Layout 排列问题

比如一个ListView中的一个View,这个View可以是各种Adapter中的一种getView()方法实现。inflate 一个layout文件。这个layout 的写法影响显示效果。


比如想写一个图片 文字 图片的View.如果按照顺序实现,则可能出现问题。


<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="horizontal"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    >
    
    <ImageView
        android:id="@+id/lock_channel"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
    />


  
        <TextView
            android:id="@+id/one_channel"  
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" 

           android:layout_toRightOf="@+id/lock_channel"
        />
    
    <ImageView
        android:id="@+id/favo_channel"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"         
        android:layout_alignParentRight="true"

    /> 
  
   
</RelativeLayout>


这样的写法并没有使文字右边的图片挨着右便界,而是在文字的后面,如何解决这个问题?


就是先使图片挨着边界,然后在布局文字。这样就可以使图片挨着边界。修改后的xml 文件如下:


<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="horizontal"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    >
    
    <ImageView
        android:id="@+id/lock_channel"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
    />

    <ImageView
        android:id="@+id/favo_channel"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"         
        android:layout_alignParentRight="true"

    /> 

  
        <TextView
            android:id="@+id/one_channel"  
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"

           android:layout_toRightOf="@+id/lock_channel"

            android:layout_toLeftOf="@+id/favo_channel"
        />
  
   
</RelativeLayout>



  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值