项目地址:https://github.com/razerdp/FriendCircle
一起撸个朋友圈吧这是本文所处文集,所有更新都会在这个文集里面哦,欢迎关注
上篇链接:http://www.jianshu.com/p/3d0cc6882e1a
下篇链接:http://www.jianshu.com/p/15a9fe8f917f
这篇非常简单,页面分享时也就两个控件,一个imageView,一个textview,分别对应网页的缩略图和标题。
我们的content布局如下:
<RelativeLayout
android:id="@+id/content"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="74dp"
android:layout_marginRight="@dimen/item_padding"
android:padding="8dp"
android:background="#f1f1f1">
<razerdp.friendcircle.widget.SuperImageView
android:id="@+id/web_thumb"
android:layout_width="45dp"
android:layout_height="45dp"
android:scaleType="centerCrop"
tools:src="@drawable/test_avatar"/>
<TextView
android:id="@+id/web_title"
android:layout_width="match_parent"
android:layout_height="45dp"
android:layout_toRightOf="@id/web_thumb"
android:layout_marginLeft="5dp"
android:gravity="left|center_vertical"
android:textColor="@color/normal_font_color"
android:textSize="@dimen/normal_font"
android:maxLines="2"
android:ellipsize="end"
tools:text="啦啦啦啦啦啦~啦啦啦啦啦啦~啦啦啦啦啦啦~"/>
</RelativeLayout>
预览效果如下:
在代码中,我们做的,仅仅是Find以及设置一下就好了
因为本篇太无聊,仅仅为了完整性而实现。。。。
下一篇,将会开始实现各种点击事件,欢迎关注-V-