FeedGridView XML:android
1 2 3 4 5 6 7 8 9 10 |
<com.zheblog.weibogridview.view.FeedGridView android:id="@+id/gv_photo" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="@dimen/zhe_dp10" android:horizontalSpacing="@dimen/zhe_dp10" android:listSelector="@color/zhe_transparent" android:scrollbars="none" android:stretchMode="none" android:verticalSpacing="@dimen/zhe_dp10" /> |
FeedGridView 使用代碼:git
1 |
gvPhoto.setPhotoAdapter(item.getPhotoModels()); |
動態效果圖:github
識別文本中的超連接、#字話題、@人的文本微信
1 2 |
tvContent.setText(TimeLineUtility.convertNormalStringToSpannableString(item.getContent(), TimeLineUtility.TimeLineStatus.FEED)); tvContent.setOnTouchListener(new ClickableTextViewMentionLinkOnTouchListener()); |
1 2 3 4 5 |
//LINK單一識別超連接 //FEED識別超連接、#字話題、@人 public enum TimeLineStatus { LINK, FEED } |
動態效果圖:佈局