码迷,mamicode.com
首页 > 其他好文 > 详细

56.EasyLikeArea

时间:2016-04-19 19:52:34      阅读:190      评论:0      收藏:0      [点我收藏+]

标签:

EasyLikeArea

Easy like area in the circle of friends or QQ qzone

技术分享 技术分享
技术分享
技术分享
技术分享


Introduction

EasyViewProxy是EasyLikeArea的缓存管理器,默认的缓存数量是17。
建议: 使用Glide给ImageView加载好图片,然后放入EasyLikeArea中。


Github

https://github.com/CaMnter/EasyLikeArea


Gradle

dependencies {
    compile ‘com.camnter.easylikearea:easylikearea:1.4‘
}

Attributes

<declare-styleable name="EasyCountDownTextureView">
    <attr name="easyLikeAreaLikeSpacing" format="dimension" />
    <attr name="easyLikeAreaOmitSpacing" format="dimension" />
    <attr name="easyLikeAreaOmitCenter" format="boolean" />
</declare-styleable>

Easy to use

更多细节,请直接去写demo。

<com.camnter.easylikearea.EasyLikeArea
    android:id="@+id/topic_ela"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_below="@id/topic_content_bottom_v"
    android:background="@color/white"
    android:paddingBottom="10dp"
    android:paddingLeft="12.5dp"
    app:easyLikeAreaOmitCenter="true"
    app:easyLikeAreaLikeSpacing="5dp"
    app:easyLikeAreaOmitSpacing="8dp"
    android:paddingRight="12.5dp"
    android:paddingTop="10dp"/>

注意: 你必须 addView(…) 在 EasyLikeArea.setOmitView(View view) 之后。

private void initLikeArea() {
    this.setOmitView(Constant.AVATARS.length);
    for (int idRes : Constant.AVATARS) {
        EasyLikeImageView iv = this.createEasyLikeImageView();
        GlideUtils.displayNative(iv, idRes);
        this.topicEla.addView(iv);
    }
}


public void setOmitView(int count) {
    View omitView = LayoutInflater.from(this).inflate(R.layout.view_omit_style_topic, null);
    this.omitTv = (TextView) omitView.findViewById(R.id.topic_omit_tv);
    this.omitTv.setText(this.getString(this.getOmitVieStringFormatId(), count));
    this.topicEla.setOmitView(omitView);
}

你可以使用 EasyLikeImageView

private EasyLikeImageView createEasyLikeImageView() {
    EasyLikeImageView iv = new EasyLikeImageView(this);
    iv.setLayoutParams(new ViewGroup.LayoutParams(this.dp2px(36), this.dp2px(36)));
    return iv;
}

EasyLikeImageView Attributes

<declare-styleable name="EasyLikeImageView">
    <attr name="easyLikeImageType">
        <enum name="round" value="2601" />
        <enum name="circle" value="2602" />
    </attr>
    <attr name="easyLikeImageBorderRadius" format="dimension" />
</declare-styleable>

Screenshots

技术分享

Scene Qzone Style
技术分享 技术分享

Compare resolution

Resolution 480x800 720x1280
技术分享 技术分享

License

  Copyright (C) 2016 CaMnter yuanyu.camnter@gmail.com

  Licensed under the Apache License, Version 2.0 (the "License");
  you may not use this file except in compliance with the License.
  You may obtain a copy of the License at

     http://www.apache.org/licenses/LICENSE-2.0

  Unless required by applicable law or agreed to in writing, software
  distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  See the License for the specific language governing permissions and
  limitations under the License.

56.EasyLikeArea

标签:

原文地址:http://blog.csdn.net/qq_16430735/article/details/51191516

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!