rightParams.addRule(RelativeLayout.ALIGN_PARENT_RI

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:descendantFocusability="blocksDescendants"
    android:paddingTop="5dp" >
    <RelativeLayout
        android:id="@+id/list_item"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal" >
        <RelativeLayout
            android:id="@+id/item_right_layout"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_alignParentRight="true" >
            <ImageView
                android:id="@+id/coupons_img"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:scaleType="fitXY" />
            <ImageView
                android:id="@+id/coupons_type_img"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignParentBottom="true"
                android:layout_alignParentRight="true" />
        </RelativeLayout>
        <LinearLayout
            android:id="@+id/item_left_layout"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_alignParentLeft="true"
            android:background="@drawable/youhuiquan"
            android:gravity="center_horizontal"
            android:orientation="vertical" >
            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="0dp"
                android:layout_weight="1"
                android:paddingBottom="2dp"
                android:paddingLeft="5dp"
                android:paddingRight="5dp"
                android:paddingTop="2dp">
                <ImageView
                    android:id="@+id/logo"
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    android:adjustViewBounds="true"
                    android:layout_marginRight="3dp"
                    android:gravity="center"
                    android:scaleType="fitCenter" />
            </LinearLayout>
            <ImageView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:scaleType="centerCrop"
                android:src="@drawable/youhuiquan_fengexian" />
            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="0dp"
                android:layout_weight="1"
                android:gravity="center"
                android:orientation="vertical" >
                <TextView
                    android:id="@+id/content"
                    android:layout_width="wrap_content"
                    android:layout_height="0dp"
                    android:singleLine="true" 
                    android:layout_weight="1"/>
                <TextView
                    android:id="@+id/distance"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:singleLine="true"
                    android:textSize="@dimen/ittle_size" />
            </LinearLayout>
        </LinearLayout>
    </RelativeLayout>
    <RelativeLayout
        android:id="@+id/cover_layout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="#60000000"
        android:visibility="gone" >
        <TextView
            android:id="@+id/cover_txt"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerInParent="true"
            android:layout_marginTop="5dp"
            android:textColor="@color/white"
            android:textSize="@dimen/daohang_txt_size" />
    </RelativeLayout>
    <ImageView
        android:id="@+id/coupons_list_item_delete"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:layout_centerVertical="true"
        android:src="@drawable/btn_shanchu2"
        android:visibility="gone" />
</RelativeLayout>
@Override
public View getView(final int position, View convertView, ViewGroup parent) {
final ViewHolder holder;
CouponBusinessData businessInfo = (CouponBusinessData) mList.get(position);
if (convertView == null) {
LayoutInflater layoutInflator = LayoutInflater.from(parent
.getContext());
convertView = layoutInflator.inflate(
R.layout.coupons_list_item, null);
holder = new ViewHolder();
holder.content = (TextView)convertView.findViewById(R.id.content);
holder.distance = (TextView)convertView.findViewById(R.id.distance);
holder.logoImg = (ImageView)convertView.findViewById(R.id.logo);
holder.couponsImg = (ImageView)convertView.findViewById(R.id.coupons_img);
holder.couponsTypeImg = (ImageView)convertView.findViewById(R.id.coupons_type_img);
holder.contentLayout = (RelativeLayout)convertView.findViewById(R.id.list_item);
holder.leftLayout = (LinearLayout)convertView.findViewById(R.id.item_left_layout);
holder.rightLayout = (RelativeLayout)convertView.findViewById(R.id.item_right_layout);
convertView.setTag(holder);
} else {
holder = (ViewHolder) convertView.getTag();
}
itemHeight = Math.round(itemWidth / 4.2f);
leftWidth = Math.round(itemWidth/2.58f);
rightWidth = Math.round(itemWidth/1.6f);
RelativeLayout.LayoutParams params = new RelativeLayout.LayoutParams(
itemWidth, itemHeight);
holder.contentLayout.setLayoutParams(params);
RelativeLayout.LayoutParams leftParams = new RelativeLayout.LayoutParams(leftWidth,itemHeight);
RelativeLayout.LayoutParams rightParams = new RelativeLayout.LayoutParams(rightWidth,itemHeight);
rightParams.addRule(RelativeLayout.ALIGN_PARENT_RIGHT);
holder.leftLayout.setLayoutParams(leftParams);
holder.rightLayout.setLayoutParams(rightParams);
holder.distance.setText(mContext.getString(R.string.distance, businessInfo.getDistance()));
String digest = businessInfo.getDigest();
SpannableStringBuilder style = new SpannableStringBuilder(digest);
for (int i = 0; i < digest.length(); i++) {
if(Character.isDigit(digest.charAt(i))){
style.setSpan(new TextAppearanceSpan(mContext, R.style.TextRedBold), i, i+1, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
}
}
if (digest.contains(".")) {
int j = 0;
for (int i = 0; i < digest.length(); i++) {
j = digest.indexOf(".", j + 1);
if (j > 0) {
style.setSpan(new TextAppearanceSpan(mContext, R.style.TextRedBold), j, j+1, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
}else{
break;
}
}
}
holder.content.setText(style);
imageLoader.loadImage(businessInfo.getLogo(), holder.logoImg);
imageLoader.loadImage(businessInfo.getImg(), holder.couponsImg);
if(0==businessInfo.getType()){
holder.couponsTypeImg.setImageDrawable(mContext.getResources().getDrawable(R.drawable.youhuiquan_daodianyouhui));
}else{
holder.couponsTypeImg.setImageDrawable(mContext.getResources().getDrawable(R.drawable.youhuiquan_lingquanyouhui));
}
return convertView;
}
时间: 2024-10-14 01:31:52

rightParams.addRule(RelativeLayout.ALIGN_PARENT_RI的相关文章

android自定义UI模板图文详解

不知道大家在实际开发中有没有自定义过UI模板?今天花时间研究了一下android中自定义UI模板,与大家分享一下. 每个设计良好的App都是自定义标题栏,在自定义标题栏的过程中大部分人可能都是自定义一个标题的xml文件,然后在需要的地方直接通过include来引用,这比起在每个布局文件中写标题栏已经进化很多了,但仍然不是最简单有效的方法,我们为什么不能自定义一个标题控件呢?今天就带大家自己做一个标题栏控件.效果图如下: 开始啦: 第一步:自定义xml属性 新建一个android项目,在value

Android学习(十七)自定义View控件 TopBar

一.创建自定义TopBar头部菜单条 实现步骤: 1.在values中添加attrs.xml文件,设置自定义属性. 2.添加Topbar类,继承RelativeLayout,实现具体功能. 3.添加到页面上,并设置添加事件. 参考代码: values\attrs.xml <?xml version="1.0" encoding="utf-8"?> <resources> <declare-styleable name="Top

自定义控件属性

demo:defineView 1.如何自定义控件属性? 2.如何动态创建组件? 3.接口回调思想 设计需要的属性 values新建attrs.xml.通过<declare-styleable>来告诉系统这是自定义的属性 <?xml version="1.0" encoding="utf-8"?> <resources> <declare-styleable name ="Topbar"> <

Android自定义布局

1.首先新建属性文件 <?xml version="1.0" encoding="utf-8"?> <resources> <declare-styleable name="topbar"> <attr name="title" format="string"/> <attr name="titleTextSize" format=&

Android自定义UI模板

第一步:自定义xml属性 新建一个android项目,在values文件夹中新建一个atts.xml的文件,在这个xml文件中声明我们一会在使用自定义控件时候需要指明的属性.atts.xml 1 <?xml version="1.0" encoding="utf-8"?> 2 <resources> 3 4 <declare-styleable name="ToolBar"> 5 <attr name=&

90、 Android UI模板设计

第一步:自定义xml属性 新建一个android项目,在values文件夹中新建一个atts.xml的文件,在这个xml文件中声明我们一会在使用自定义控件时候需要指明的属性.atts.xml <?xml version="1.0" encoding="utf-8"?> <resources> <declare-styleable name="ToolBar"> <attr name="title

自定义通用的标题条目

转载请注明出处: http://blog.csdn.net/forwardyzk/article/details/43760891 在开发中在Activity,Fragment中,我们一般都会增加标题的展示,现在自定义一个控件,可以在每个界面都可以使用.下面先看一下效果图: 使用的方法是自定义属性,首先在res/values/attres.xml <?xml version="1.0" encoding="utf-8"?> <resources&g

高德地图组件在Android的应用以及Android与JavaScript的交互

最近在慕课网学习了关于高德地图组件的课程(其实就是一个广告,内容和官网的API完全一样),发现这个JavaScript API比Android API简单方便多了,于是就打算放在Android APP上来实现,花了一点小功夫,但是最终还是实现了,后来打算扩展的时候遇到个问题:就是高德官网有一个坐标拾取点(高德的坐标和我们平时取的坐标不一样,可以将高德坐标理解为中国的国标,直接获取的坐标是国际标准的坐标),后来发现有html文件直接实现了这个功能,于是就把这个html扒出来了,但是重点问题来了:如

android组合自定义控件

第一步:设置控件需要的属性 在value目录下面新建一个attrs.xml属性文件 然后在里面设置控件属性,首先设置控件名称,name里面即你自定义的控件名称 <declare-styleablename="FanTitle"> </declare-styleable> 这步完成之后,在里面为你的控件添加属性: name是属性名称,format是属性类型 <declare-styleablename="FanTitle"> <