update 直播間分享
@ -1,10 +1,15 @@
|
|||||||
package com.yunbao.share;
|
package com.yunbao.share;
|
||||||
|
|
||||||
import android.content.Context;
|
import android.content.Context;
|
||||||
|
import android.content.IntentFilter;
|
||||||
import android.net.Uri;
|
import android.net.Uri;
|
||||||
|
|
||||||
import androidx.core.content.FileProvider;
|
import androidx.core.content.FileProvider;
|
||||||
|
|
||||||
|
import com.twitter.sdk.android.tweetcomposer.TweetUploadService;
|
||||||
|
import com.yunbao.share.bean.ShareBuilder;
|
||||||
|
import com.yunbao.share.receiver.TwitterResultReceiver;
|
||||||
|
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
|
|
||||||
public abstract class AbsShareInterface {
|
public abstract class AbsShareInterface {
|
||||||
@ -12,6 +17,10 @@ public abstract class AbsShareInterface {
|
|||||||
|
|
||||||
public AbsShareInterface(Context context) {
|
public AbsShareInterface(Context context) {
|
||||||
this.mContext = context;
|
this.mContext = context;
|
||||||
|
IntentFilter filter = new IntentFilter(TweetUploadService.UPLOAD_SUCCESS);
|
||||||
|
filter.addAction(TweetUploadService.UPLOAD_FAILURE);
|
||||||
|
filter.addAction(TweetUploadService.TWEET_COMPOSE_CANCEL);
|
||||||
|
context.registerReceiver(new TwitterResultReceiver(), filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
public abstract void share(ShareBuilder builder, ICallback callback);
|
public abstract void share(ShareBuilder builder, ICallback callback);
|
||||||
|
@ -1,40 +0,0 @@
|
|||||||
package com.yunbao.share;
|
|
||||||
|
|
||||||
import java.io.File;
|
|
||||||
|
|
||||||
public class ShareBuilder {
|
|
||||||
private String text;
|
|
||||||
private String link;
|
|
||||||
private File file;
|
|
||||||
|
|
||||||
public static ShareBuilder builder(){
|
|
||||||
return new ShareBuilder();
|
|
||||||
}
|
|
||||||
|
|
||||||
public ShareBuilder setText(String text) {
|
|
||||||
this.text = text;
|
|
||||||
return this;
|
|
||||||
}
|
|
||||||
|
|
||||||
public ShareBuilder setLink(String link) {
|
|
||||||
this.link = link;
|
|
||||||
return this;
|
|
||||||
}
|
|
||||||
|
|
||||||
public ShareBuilder setFile(File file) {
|
|
||||||
this.file = file;
|
|
||||||
return this;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getText() {
|
|
||||||
return text;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getLink() {
|
|
||||||
return link;
|
|
||||||
}
|
|
||||||
|
|
||||||
public File getFile() {
|
|
||||||
return file;
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,67 +0,0 @@
|
|||||||
package com.yunbao.share;
|
|
||||||
|
|
||||||
import android.content.Context;
|
|
||||||
import android.content.IntentFilter;
|
|
||||||
|
|
||||||
import com.twitter.sdk.android.tweetcomposer.TweetUploadService;
|
|
||||||
import com.yunbao.share.platform.FacebookShare;
|
|
||||||
import com.yunbao.share.platform.Instagram;
|
|
||||||
import com.yunbao.share.platform.Line;
|
|
||||||
import com.yunbao.share.platform.MessengerShare;
|
|
||||||
import com.yunbao.share.platform.TwitterShare;
|
|
||||||
import com.yunbao.share.platform.WhatsApp;
|
|
||||||
import com.yunbao.share.receiver.TwitterResultReceiver;
|
|
||||||
|
|
||||||
public class ShareManager {
|
|
||||||
public static final int SHARE_Twitter = 0;
|
|
||||||
public static final int SHARE_Facebook = 1;
|
|
||||||
public static final int SHARE_Instagram = 2;
|
|
||||||
public static final int SHARE_WhatsApp = 3;
|
|
||||||
public static final int SHARE_Line = 4;
|
|
||||||
public static final int SHARE_Messenger = 5;
|
|
||||||
|
|
||||||
private static ShareManager manager = null;
|
|
||||||
|
|
||||||
public static ShareManager getInstance(Context context) {
|
|
||||||
if (manager == null) {
|
|
||||||
manager = new ShareManager(context);
|
|
||||||
}
|
|
||||||
return manager;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
private ShareManager(Context context) {
|
|
||||||
IntentFilter filter = new IntentFilter(TweetUploadService.UPLOAD_SUCCESS);
|
|
||||||
filter.addAction(TweetUploadService.UPLOAD_FAILURE);
|
|
||||||
filter.addAction(TweetUploadService.TWEET_COMPOSE_CANCEL);
|
|
||||||
context.registerReceiver(new TwitterResultReceiver(), filter);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void createShare(ShareBuilder builder, Context context, int type, ICallback callback) {
|
|
||||||
AbsShareInterface share = null;
|
|
||||||
switch (type) {
|
|
||||||
case SHARE_Twitter:
|
|
||||||
share = new TwitterShare(context);
|
|
||||||
break;
|
|
||||||
case SHARE_Facebook:
|
|
||||||
share = new FacebookShare(context);
|
|
||||||
break;
|
|
||||||
case SHARE_Instagram:
|
|
||||||
share = new Instagram(context);
|
|
||||||
break;
|
|
||||||
case SHARE_WhatsApp:
|
|
||||||
share = new WhatsApp(context);
|
|
||||||
break;
|
|
||||||
case SHARE_Line:
|
|
||||||
share = new Line(context);
|
|
||||||
break;
|
|
||||||
case SHARE_Messenger:
|
|
||||||
share = new MessengerShare(context);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
if (share != null) {
|
|
||||||
share.share(builder, callback);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
@ -0,0 +1,67 @@
|
|||||||
|
package com.yunbao.share.adapters;
|
||||||
|
|
||||||
|
import android.content.Context;
|
||||||
|
import android.view.LayoutInflater;
|
||||||
|
import android.view.View;
|
||||||
|
import android.view.ViewGroup;
|
||||||
|
import android.widget.TextView;
|
||||||
|
|
||||||
|
import androidx.annotation.NonNull;
|
||||||
|
import androidx.recyclerview.widget.RecyclerView;
|
||||||
|
|
||||||
|
import com.pdlive.shayu.R;
|
||||||
|
import com.yunbao.share.bean.InviteRewardBean;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
public class InviteRewardListAdapter extends RecyclerView.Adapter<InviteRewardListAdapter.RewardViewHolder> {
|
||||||
|
private Context mContext;
|
||||||
|
private List<InviteRewardBean> list;
|
||||||
|
|
||||||
|
public InviteRewardListAdapter(Context mContext) {
|
||||||
|
this.mContext = mContext;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setList(List<InviteRewardBean> list) {
|
||||||
|
this.list = list;
|
||||||
|
}
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
@Override
|
||||||
|
public RewardViewHolder onCreateViewHolder(@NonNull ViewGroup parent, int viewType) {
|
||||||
|
return new RewardViewHolder(LayoutInflater.from(mContext).inflate(R.layout.item_invite_reward,parent,false));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onBindViewHolder(@NonNull RewardViewHolder holder, int position) {
|
||||||
|
holder.setData(list.get(position),position);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int getItemCount() {
|
||||||
|
return list.size();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
public static class RewardViewHolder extends RecyclerView.ViewHolder {
|
||||||
|
private final TextView item1;
|
||||||
|
private final TextView item2;
|
||||||
|
private final TextView item3;
|
||||||
|
private final TextView item4;
|
||||||
|
|
||||||
|
public RewardViewHolder(@NonNull View itemView) {
|
||||||
|
super(itemView);
|
||||||
|
item1 = itemView.findViewById(R.id.item1);
|
||||||
|
item2 = itemView.findViewById(R.id.item2);
|
||||||
|
item3 = itemView.findViewById(R.id.item3);
|
||||||
|
item4 = itemView.findViewById(R.id.item4);
|
||||||
|
}
|
||||||
|
|
||||||
|
void setData(InviteRewardBean bean, int position) {
|
||||||
|
item1.setText(bean.getUsername());
|
||||||
|
item2.setText(bean.getInviteTime());
|
||||||
|
item3.setText(bean.getType());
|
||||||
|
item4.setText(bean.getReward());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,134 @@
|
|||||||
|
package com.yunbao.share.adapters;
|
||||||
|
|
||||||
|
import android.content.Context;
|
||||||
|
import android.os.Environment;
|
||||||
|
import android.view.LayoutInflater;
|
||||||
|
import android.view.View;
|
||||||
|
import android.view.ViewGroup;
|
||||||
|
import android.widget.ImageView;
|
||||||
|
import android.widget.TextView;
|
||||||
|
|
||||||
|
import androidx.annotation.DrawableRes;
|
||||||
|
import androidx.annotation.NonNull;
|
||||||
|
import androidx.annotation.StringRes;
|
||||||
|
import androidx.recyclerview.widget.RecyclerView;
|
||||||
|
|
||||||
|
import com.pdlive.shayu.R;
|
||||||
|
import com.yunbao.share.ICallback;
|
||||||
|
import com.yunbao.share.bean.ShareBuilder;
|
||||||
|
import com.yunbao.share.platform.FacebookShare;
|
||||||
|
import com.yunbao.share.platform.Instagram;
|
||||||
|
import com.yunbao.share.platform.Line;
|
||||||
|
import com.yunbao.share.platform.MessengerShare;
|
||||||
|
import com.yunbao.share.platform.TwitterShare;
|
||||||
|
import com.yunbao.share.platform.WhatsApp;
|
||||||
|
|
||||||
|
import java.io.File;
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
public class ShareAppAdapter extends RecyclerView.Adapter<ShareAppAdapter.AppViewHolder> {
|
||||||
|
private Context mContext;
|
||||||
|
private List<ShareBuilder> list;
|
||||||
|
|
||||||
|
public ShareAppAdapter(Context mContext) {
|
||||||
|
list = new ArrayList<>();
|
||||||
|
this.mContext = mContext;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setList(List<ShareBuilder> list) {
|
||||||
|
this.list = list;
|
||||||
|
notifyDataSetChanged();
|
||||||
|
}
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
@Override
|
||||||
|
public AppViewHolder onCreateViewHolder(@NonNull ViewGroup parent, int viewType) {
|
||||||
|
return new AppViewHolder(LayoutInflater.from(mContext).inflate(R.layout.item_share_app, parent, false));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onBindViewHolder(@NonNull AppViewHolder holder, int position) {
|
||||||
|
ShareBuilder builder = list.get(position);
|
||||||
|
switch (builder.getType()) {
|
||||||
|
case ShareBuilder.APP_FACEBOOK:
|
||||||
|
holder.setData(builder, R.mipmap.icon_share_facebook, R.string.dialog_share_app_facebook);
|
||||||
|
break;
|
||||||
|
case ShareBuilder.APP_LINE:
|
||||||
|
holder.setData(builder, R.mipmap.icon_share_line, R.string.dialog_share_app_line);
|
||||||
|
break;
|
||||||
|
case ShareBuilder.APP_TWITTER:
|
||||||
|
holder.setData(builder, R.mipmap.icon_share_twitter, R.string.dialog_share_app_twitter);
|
||||||
|
break;
|
||||||
|
case ShareBuilder.APP_WHATSAPP:
|
||||||
|
holder.setData(builder, R.mipmap.icon_share_whatsapp, R.string.dialog_share_app_whatsapp);
|
||||||
|
break;
|
||||||
|
case ShareBuilder.APP_MESSENGER:
|
||||||
|
holder.setData(builder, R.mipmap.icon_share_messenger, R.string.dialog_share_app_messenger);
|
||||||
|
break;
|
||||||
|
case ShareBuilder.APP_INSTAGRAM:
|
||||||
|
holder.setData(builder, R.mipmap.icon_share_instagram, R.string.dialog_share_app_instagram);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int getItemCount() {
|
||||||
|
return list.size();
|
||||||
|
}
|
||||||
|
|
||||||
|
public static class AppViewHolder extends RecyclerView.ViewHolder {
|
||||||
|
ImageView icon;
|
||||||
|
TextView title;
|
||||||
|
|
||||||
|
public AppViewHolder(@NonNull View itemView) {
|
||||||
|
super(itemView);
|
||||||
|
icon = itemView.findViewById(R.id.share_app_icon);
|
||||||
|
title = itemView.findViewById(R.id.share_app_name);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setData(ShareBuilder bean, @DrawableRes int iconId, @StringRes int appName) {
|
||||||
|
icon.setImageResource(iconId);
|
||||||
|
title.setText(appName);
|
||||||
|
String filename = "/ztest/myPhoto.jpg";
|
||||||
|
String mediaPath = Environment.getExternalStorageDirectory() + filename;
|
||||||
|
File media = new File(mediaPath);
|
||||||
|
bean.setFile(media);
|
||||||
|
itemView.setOnClickListener(v -> {
|
||||||
|
switch (bean.getType()) {
|
||||||
|
case ShareBuilder.APP_FACEBOOK:
|
||||||
|
new FacebookShare(itemView.getContext()).share(bean, new ShareCallback());
|
||||||
|
break;
|
||||||
|
case ShareBuilder.APP_LINE:
|
||||||
|
new Line(itemView.getContext()).share(bean, new ShareCallback());
|
||||||
|
break;
|
||||||
|
case ShareBuilder.APP_TWITTER:
|
||||||
|
new TwitterShare(itemView.getContext()).share(bean, new ShareCallback());
|
||||||
|
break;
|
||||||
|
case ShareBuilder.APP_WHATSAPP:
|
||||||
|
new WhatsApp(itemView.getContext()).share(bean, new ShareCallback());
|
||||||
|
break;
|
||||||
|
case ShareBuilder.APP_MESSENGER:
|
||||||
|
new MessengerShare(itemView.getContext()).share(bean, new ShareCallback());
|
||||||
|
break;
|
||||||
|
case ShareBuilder.APP_INSTAGRAM:
|
||||||
|
new Instagram(itemView.getContext()).share(bean, new ShareCallback());
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
private static class ShareCallback implements ICallback {
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onSuccess() {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onFailure() {
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,63 @@
|
|||||||
|
package com.yunbao.share.bean;
|
||||||
|
|
||||||
|
import androidx.annotation.NonNull;
|
||||||
|
|
||||||
|
public class InviteRewardBean{
|
||||||
|
private String username;
|
||||||
|
private String inviteTime;
|
||||||
|
private String type;
|
||||||
|
private String reward;
|
||||||
|
|
||||||
|
public InviteRewardBean() {
|
||||||
|
}
|
||||||
|
|
||||||
|
public InviteRewardBean(String username, String inviteTime, String type, String reward) {
|
||||||
|
this.username = username;
|
||||||
|
this.inviteTime = inviteTime;
|
||||||
|
this.type = type;
|
||||||
|
this.reward = reward;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getUsername() {
|
||||||
|
return username;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setUsername(String username) {
|
||||||
|
this.username = username;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getInviteTime() {
|
||||||
|
return inviteTime;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setInviteTime(String inviteTime) {
|
||||||
|
this.inviteTime = inviteTime;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getType() {
|
||||||
|
return type;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setType(String type) {
|
||||||
|
this.type = type;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getReward() {
|
||||||
|
return reward;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setReward(String reward) {
|
||||||
|
this.reward = reward;
|
||||||
|
}
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
return "InviteRewardBean{" +
|
||||||
|
"username='" + username + '\'' +
|
||||||
|
", inviteTime='" + inviteTime + '\'' +
|
||||||
|
", type='" + type + '\'' +
|
||||||
|
", reward='" + reward + '\'' +
|
||||||
|
'}';
|
||||||
|
}
|
||||||
|
}
|
136
Share/src/main/java/com/yunbao/share/bean/ShareBuilder.java
Normal file
@ -0,0 +1,136 @@
|
|||||||
|
package com.yunbao.share.bean;
|
||||||
|
|
||||||
|
import androidx.annotation.NonNull;
|
||||||
|
|
||||||
|
import com.yunbao.common.CommonAppConfig;
|
||||||
|
import com.yunbao.common.utils.StringUtil;
|
||||||
|
|
||||||
|
import java.io.File;
|
||||||
|
import java.io.UnsupportedEncodingException;
|
||||||
|
import java.net.URLEncoder;
|
||||||
|
|
||||||
|
public class ShareBuilder {
|
||||||
|
public static final int APP_FACEBOOK = 0;
|
||||||
|
public static final int APP_LINE = 1;
|
||||||
|
public static final int APP_TWITTER = 2;
|
||||||
|
public static final int APP_WHATSAPP = 3;
|
||||||
|
public static final int APP_MESSENGER = 4;
|
||||||
|
public static final int APP_INSTAGRAM = 5;
|
||||||
|
|
||||||
|
private String text;
|
||||||
|
private String link;
|
||||||
|
private File file;
|
||||||
|
private int type;
|
||||||
|
private String uid;
|
||||||
|
private String anchorId;
|
||||||
|
private String anchorName;
|
||||||
|
private String anchorAvatar;
|
||||||
|
|
||||||
|
public static String createLiveShareLink(String shareUid, String anchorId, String anchorName, String anchorAvatar) {
|
||||||
|
try {
|
||||||
|
return String.format(CommonAppConfig.HOST +
|
||||||
|
"/h5/activity/FriendInvitation/liveShare.html?user_id=%s&anchor_id=%s&anchor_name=%s&anchor_avatar=%s&isGoogle=%s",
|
||||||
|
shareUid,
|
||||||
|
anchorId,
|
||||||
|
URLEncoder.encode(anchorName, "UTF-8"),
|
||||||
|
URLEncoder.encode(anchorAvatar, "UTF-8"),
|
||||||
|
CommonAppConfig.IS_GOOGLE_PLAY ? "1" : "0"
|
||||||
|
);
|
||||||
|
} catch (UnsupportedEncodingException e) {
|
||||||
|
throw new RuntimeException(e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
public static String createInviteLink(String shareUid){
|
||||||
|
return String.format("https://www.pdlive.com/public/app/download/index.html?user_id=%s&isGoogle=%s",
|
||||||
|
shareUid,
|
||||||
|
CommonAppConfig.IS_GOOGLE_PLAY ? "1" : "0"
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static ShareBuilder builder(int type) {
|
||||||
|
return new ShareBuilder(type);
|
||||||
|
}
|
||||||
|
|
||||||
|
private ShareBuilder(int type) {
|
||||||
|
this.type = type;
|
||||||
|
}
|
||||||
|
|
||||||
|
public int getType() {
|
||||||
|
return type;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getUid() {
|
||||||
|
return uid;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setUid(String uid) {
|
||||||
|
this.uid = uid;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getAnchorId() {
|
||||||
|
return anchorId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setAnchorId(String anchorId) {
|
||||||
|
this.anchorId = anchorId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getAnchorName() {
|
||||||
|
return anchorName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setAnchorName(String anchorName) {
|
||||||
|
this.anchorName = anchorName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getAnchorAvatar() {
|
||||||
|
return anchorAvatar;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setAnchorAvatar(String anchorAvatar) {
|
||||||
|
this.anchorAvatar = anchorAvatar;
|
||||||
|
}
|
||||||
|
|
||||||
|
public ShareBuilder setText(String text) {
|
||||||
|
this.text = text;
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
public ShareBuilder setLink(String link) {
|
||||||
|
this.link = link;
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
public ShareBuilder setFile(File file) {
|
||||||
|
this.file = file;
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getText() {
|
||||||
|
if (StringUtil.isEmpty(text)) {
|
||||||
|
return getLink();
|
||||||
|
}
|
||||||
|
return text + "\n" + getLink();
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getLink() {
|
||||||
|
if (StringUtil.isEmpty(link)) {
|
||||||
|
link = createLiveShareLink(uid, anchorId, anchorName, anchorAvatar);
|
||||||
|
}
|
||||||
|
return link;
|
||||||
|
}
|
||||||
|
|
||||||
|
public File getFile() {
|
||||||
|
return file;
|
||||||
|
}
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
return "ShareBuilder{" +
|
||||||
|
"text='" + text + '\'' +
|
||||||
|
", link='" + link + '\'' +
|
||||||
|
", file=" + file +
|
||||||
|
'}';
|
||||||
|
}
|
||||||
|
}
|
@ -3,7 +3,6 @@ package com.yunbao.share.platform;
|
|||||||
import android.app.Activity;
|
import android.app.Activity;
|
||||||
import android.content.Context;
|
import android.content.Context;
|
||||||
import android.net.Uri;
|
import android.net.Uri;
|
||||||
import android.util.Log;
|
|
||||||
|
|
||||||
import androidx.annotation.NonNull;
|
import androidx.annotation.NonNull;
|
||||||
|
|
||||||
@ -16,7 +15,7 @@ import com.facebook.share.widget.ShareDialog;
|
|||||||
import com.yunbao.common.utils.ToastUtil;
|
import com.yunbao.common.utils.ToastUtil;
|
||||||
import com.yunbao.share.AbsShareInterface;
|
import com.yunbao.share.AbsShareInterface;
|
||||||
import com.yunbao.share.ICallback;
|
import com.yunbao.share.ICallback;
|
||||||
import com.yunbao.share.ShareBuilder;
|
import com.yunbao.share.bean.ShareBuilder;
|
||||||
|
|
||||||
public class FacebookShare extends AbsShareInterface {
|
public class FacebookShare extends AbsShareInterface {
|
||||||
public static CallbackManager callbackManager;
|
public static CallbackManager callbackManager;
|
||||||
|
@ -4,11 +4,9 @@ import android.content.Context;
|
|||||||
import android.content.Intent;
|
import android.content.Intent;
|
||||||
import android.net.Uri;
|
import android.net.Uri;
|
||||||
|
|
||||||
import androidx.core.content.FileProvider;
|
|
||||||
|
|
||||||
import com.yunbao.share.AbsShareInterface;
|
import com.yunbao.share.AbsShareInterface;
|
||||||
import com.yunbao.share.ICallback;
|
import com.yunbao.share.ICallback;
|
||||||
import com.yunbao.share.ShareBuilder;
|
import com.yunbao.share.bean.ShareBuilder;
|
||||||
|
|
||||||
public class Instagram extends AbsShareInterface {
|
public class Instagram extends AbsShareInterface {
|
||||||
public Instagram(Context context) {
|
public Instagram(Context context) {
|
||||||
|
@ -6,11 +6,9 @@ import android.net.Uri;
|
|||||||
|
|
||||||
import com.yunbao.share.AbsShareInterface;
|
import com.yunbao.share.AbsShareInterface;
|
||||||
import com.yunbao.share.ICallback;
|
import com.yunbao.share.ICallback;
|
||||||
import com.yunbao.share.ShareBuilder;
|
import com.yunbao.share.bean.ShareBuilder;
|
||||||
|
|
||||||
import java.io.UnsupportedEncodingException;
|
|
||||||
import java.net.URLEncoder;
|
import java.net.URLEncoder;
|
||||||
import java.nio.charset.Charset;
|
|
||||||
|
|
||||||
public class Line extends AbsShareInterface {
|
public class Line extends AbsShareInterface {
|
||||||
|
|
||||||
|
@ -12,14 +12,11 @@ import com.facebook.FacebookException;
|
|||||||
import com.facebook.FacebookSdk;
|
import com.facebook.FacebookSdk;
|
||||||
import com.facebook.share.Sharer;
|
import com.facebook.share.Sharer;
|
||||||
import com.facebook.share.model.ShareLinkContent;
|
import com.facebook.share.model.ShareLinkContent;
|
||||||
import com.facebook.share.model.SharePhoto;
|
|
||||||
import com.facebook.share.model.SharePhotoContent;
|
|
||||||
import com.facebook.share.widget.MessageDialog;
|
import com.facebook.share.widget.MessageDialog;
|
||||||
import com.facebook.share.widget.ShareDialog;
|
|
||||||
import com.yunbao.common.utils.ToastUtil;
|
import com.yunbao.common.utils.ToastUtil;
|
||||||
import com.yunbao.share.AbsShareInterface;
|
import com.yunbao.share.AbsShareInterface;
|
||||||
import com.yunbao.share.ICallback;
|
import com.yunbao.share.ICallback;
|
||||||
import com.yunbao.share.ShareBuilder;
|
import com.yunbao.share.bean.ShareBuilder;
|
||||||
|
|
||||||
public class MessengerShare extends AbsShareInterface {
|
public class MessengerShare extends AbsShareInterface {
|
||||||
public static CallbackManager callbackManager;
|
public static CallbackManager callbackManager;
|
||||||
|
@ -1,24 +1,15 @@
|
|||||||
package com.yunbao.share.platform;
|
package com.yunbao.share.platform;
|
||||||
|
|
||||||
import android.app.Activity;
|
|
||||||
import android.content.Context;
|
import android.content.Context;
|
||||||
import android.content.Intent;
|
import android.content.Intent;
|
||||||
|
import android.net.Uri;
|
||||||
|
|
||||||
import com.twitter.sdk.android.core.Callback;
|
|
||||||
import com.twitter.sdk.android.core.Result;
|
|
||||||
import com.twitter.sdk.android.core.Twitter;
|
import com.twitter.sdk.android.core.Twitter;
|
||||||
import com.twitter.sdk.android.core.TwitterApiClient;
|
|
||||||
import com.twitter.sdk.android.core.TwitterAuthToken;
|
|
||||||
import com.twitter.sdk.android.core.TwitterCore;
|
|
||||||
import com.twitter.sdk.android.core.TwitterException;
|
|
||||||
import com.twitter.sdk.android.core.TwitterSession;
|
|
||||||
import com.twitter.sdk.android.core.identity.TwitterAuthClient;
|
|
||||||
import com.twitter.sdk.android.core.services.AccountService;
|
|
||||||
import com.twitter.sdk.android.tweetcomposer.ComposerActivity;
|
|
||||||
import com.twitter.sdk.android.tweetcomposer.TweetComposer;
|
|
||||||
import com.yunbao.share.AbsShareInterface;
|
import com.yunbao.share.AbsShareInterface;
|
||||||
import com.yunbao.share.ICallback;
|
import com.yunbao.share.ICallback;
|
||||||
import com.yunbao.share.ShareBuilder;
|
import com.yunbao.share.bean.ShareBuilder;
|
||||||
|
|
||||||
|
import java.net.URLEncoder;
|
||||||
|
|
||||||
public class TwitterShare extends AbsShareInterface {
|
public class TwitterShare extends AbsShareInterface {
|
||||||
public TwitterShare(Context context) {
|
public TwitterShare(Context context) {
|
||||||
@ -51,10 +42,32 @@ public class TwitterShare extends AbsShareInterface {
|
|||||||
public void failure(TwitterException e) {
|
public void failure(TwitterException e) {
|
||||||
}
|
}
|
||||||
});*/
|
});*/
|
||||||
|
/* TweetComposer.Builder builder;
|
||||||
TweetComposer.Builder builder = new TweetComposer.Builder(mContext)
|
if (date.getFile() == null) {
|
||||||
|
try {
|
||||||
|
builder=new TweetComposer.Builder(mContext)
|
||||||
|
.text(date.getText())
|
||||||
|
.url(new URL(date.getLink()));
|
||||||
|
} catch (MalformedURLException e) {
|
||||||
|
throw new RuntimeException(e);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
builder = new TweetComposer.Builder(mContext)
|
||||||
.text(date.getText())
|
.text(date.getText())
|
||||||
.image(fileToUri(date.getFile()));
|
.image(fileToUri(date.getFile()));
|
||||||
builder.show();
|
}
|
||||||
|
builder.show();*/
|
||||||
|
try {
|
||||||
|
Intent sendIntent = new Intent();
|
||||||
|
sendIntent.setAction(Intent.ACTION_VIEW);
|
||||||
|
sendIntent.putExtra(Intent.EXTRA_TEXT, date.getLink());
|
||||||
|
// sendIntent.setType("text/plain");
|
||||||
|
//sendIntent.setPackage("com.twitter.composer.ComposerShareActivity");
|
||||||
|
sendIntent.setData(Uri.parse("https://twitter.com/intent/tweet?text=" +URLEncoder.encode(date.getText(),"UTF-8")));
|
||||||
|
mContext.startActivity(sendIntent);
|
||||||
|
callback.onSuccess();
|
||||||
|
} catch (Exception e) {
|
||||||
|
callback.onFailure();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -5,7 +5,7 @@ import android.content.Intent;
|
|||||||
|
|
||||||
import com.yunbao.share.AbsShareInterface;
|
import com.yunbao.share.AbsShareInterface;
|
||||||
import com.yunbao.share.ICallback;
|
import com.yunbao.share.ICallback;
|
||||||
import com.yunbao.share.ShareBuilder;
|
import com.yunbao.share.bean.ShareBuilder;
|
||||||
|
|
||||||
public class WhatsApp extends AbsShareInterface {
|
public class WhatsApp extends AbsShareInterface {
|
||||||
public WhatsApp(Context context) {
|
public WhatsApp(Context context) {
|
||||||
|
131
Share/src/main/java/com/yunbao/share/ui/InvitePopDialog.java
Normal file
@ -0,0 +1,131 @@
|
|||||||
|
package com.yunbao.share.ui;
|
||||||
|
|
||||||
|
import static android.content.Context.CLIPBOARD_SERVICE;
|
||||||
|
|
||||||
|
import android.app.Dialog;
|
||||||
|
import android.content.ClipData;
|
||||||
|
import android.content.ClipboardManager;
|
||||||
|
import android.content.Context;
|
||||||
|
import android.widget.TextView;
|
||||||
|
|
||||||
|
import androidx.annotation.NonNull;
|
||||||
|
import androidx.recyclerview.widget.GridLayoutManager;
|
||||||
|
import androidx.recyclerview.widget.RecyclerView;
|
||||||
|
|
||||||
|
import com.lxj.xpopup.XPopup;
|
||||||
|
import com.makeramen.roundedimageview.RoundedImageView;
|
||||||
|
import com.pdlive.shayu.R;
|
||||||
|
import com.yunbao.common.dialog.AbsDialogPopupWindow;
|
||||||
|
import com.yunbao.common.utils.DialogUitl;
|
||||||
|
import com.yunbao.common.utils.ToastUtil;
|
||||||
|
import com.yunbao.common.utils.WordUtil;
|
||||||
|
import com.yunbao.share.bean.ShareBuilder;
|
||||||
|
import com.yunbao.share.adapters.ShareAppAdapter;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
public class InvitePopDialog extends AbsDialogPopupWindow {
|
||||||
|
private ShareAppAdapter adapter;
|
||||||
|
private RecyclerView list;
|
||||||
|
private RoundedImageView avatar;
|
||||||
|
private TextView info;
|
||||||
|
private TextView link;
|
||||||
|
private List<ShareBuilder> data;
|
||||||
|
|
||||||
|
private String uid;
|
||||||
|
private String anchorId;
|
||||||
|
private String anchorName;
|
||||||
|
private String anchorAvatar;
|
||||||
|
|
||||||
|
public InvitePopDialog(@NonNull Context context) {
|
||||||
|
super(context);
|
||||||
|
}
|
||||||
|
|
||||||
|
public InvitePopDialog setUid(String uid) {
|
||||||
|
this.uid = uid;
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
public InvitePopDialog setAnchorId(String anchorId) {
|
||||||
|
this.anchorId = anchorId;
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
public InvitePopDialog setAnchorName(String anchorName) {
|
||||||
|
this.anchorName = anchorName;
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
public InvitePopDialog setAnchorAvatar(String anchorAvatar) {
|
||||||
|
this.anchorAvatar = anchorAvatar;
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void buildDialog(XPopup.Builder builder) {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int bindLayoutId() {
|
||||||
|
return R.layout.dialog_share;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void onCreate() {
|
||||||
|
super.onCreate();
|
||||||
|
findViewById(R.id.close).setOnClickListener(v -> dismiss());
|
||||||
|
findViewById(R.id.share_copy).setOnClickListener(v -> copyLink());
|
||||||
|
findViewById(R.id.share_title).setOnClickListener(v -> copyLink());
|
||||||
|
findViewById(R.id.share_preview).setVisibility(GONE);
|
||||||
|
findViewById(R.id.share_dialog).setBackgroundResource(R.mipmap.bg_dialog_inviet);
|
||||||
|
((TextView) findViewById(R.id.share_title)).setText(R.string.dialog_invite_title);
|
||||||
|
((TextView) findViewById(R.id.share_title)).setTextColor(R.drawable.bg_invite_title);
|
||||||
|
list = findViewById(R.id.share_apps_list);
|
||||||
|
avatar = findViewById(R.id.share_avatar);
|
||||||
|
info = findViewById(R.id.share_info);
|
||||||
|
link = findViewById(R.id.share_link);
|
||||||
|
adapter = new ShareAppAdapter(getContext());
|
||||||
|
list.setLayoutManager(new GridLayoutManager(getContext(), 3));
|
||||||
|
list.setAdapter(adapter);
|
||||||
|
initData();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void initData() {
|
||||||
|
data = new ArrayList<>();
|
||||||
|
data.add(builder(ShareBuilder.APP_FACEBOOK));
|
||||||
|
data.add(builder(ShareBuilder.APP_LINE));
|
||||||
|
data.add(builder(ShareBuilder.APP_TWITTER));
|
||||||
|
data.add(builder(ShareBuilder.APP_WHATSAPP));
|
||||||
|
data.add(builder(ShareBuilder.APP_MESSENGER));
|
||||||
|
// data.add(builder(ShareBuilder.APP_INSTAGRAM));
|
||||||
|
adapter.setList(data);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
private ShareBuilder builder(int type) {
|
||||||
|
ShareBuilder builder = ShareBuilder.builder(type);
|
||||||
|
//builder.setText(WordUtil.getString(R.string.dialog_share_info));
|
||||||
|
builder.setLink(ShareBuilder.createInviteLink(uid));
|
||||||
|
builder.setUid(uid);
|
||||||
|
builder.setAnchorId(anchorId);
|
||||||
|
builder.setAnchorName(anchorName);
|
||||||
|
builder.setAnchorAvatar(anchorAvatar);
|
||||||
|
return builder;
|
||||||
|
}
|
||||||
|
|
||||||
|
private void copyLink() {
|
||||||
|
ClipboardManager cm = (ClipboardManager) getContext().getSystemService(CLIPBOARD_SERVICE);
|
||||||
|
ClipData clipData = ClipData.newPlainText("text", link.getText().toString());
|
||||||
|
cm.setPrimaryClip(clipData);
|
||||||
|
ToastUtil.show(WordUtil.getString(com.yunbao.common.R.string.copy_success));
|
||||||
|
DialogUitl.showSimpleDialog(getContext(), ShareBuilder.createInviteLink(uid), new DialogUitl.SimpleCallback() {
|
||||||
|
@Override
|
||||||
|
public void onConfirmClick(Dialog dialog, String content) {
|
||||||
|
dialog.dismiss();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,131 @@
|
|||||||
|
package com.yunbao.share.ui;
|
||||||
|
|
||||||
|
import static android.content.Context.CLIPBOARD_SERVICE;
|
||||||
|
|
||||||
|
import android.app.Dialog;
|
||||||
|
import android.content.ClipData;
|
||||||
|
import android.content.ClipboardManager;
|
||||||
|
import android.content.Context;
|
||||||
|
import android.widget.TextView;
|
||||||
|
|
||||||
|
import androidx.annotation.NonNull;
|
||||||
|
import androidx.recyclerview.widget.LinearLayoutManager;
|
||||||
|
import androidx.recyclerview.widget.RecyclerView;
|
||||||
|
|
||||||
|
import com.lxj.xpopup.XPopup;
|
||||||
|
import com.makeramen.roundedimageview.RoundedImageView;
|
||||||
|
import com.pdlive.shayu.R;
|
||||||
|
import com.yunbao.common.dialog.AbsDialogPopupWindow;
|
||||||
|
import com.yunbao.common.utils.DialogUitl;
|
||||||
|
import com.yunbao.common.utils.ToastUtil;
|
||||||
|
import com.yunbao.common.utils.WordUtil;
|
||||||
|
import com.yunbao.share.bean.ShareBuilder;
|
||||||
|
import com.yunbao.share.adapters.ShareAppAdapter;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
public class InviteRewardPopDialog extends AbsDialogPopupWindow {
|
||||||
|
private ShareAppAdapter adapter;
|
||||||
|
private RecyclerView list;
|
||||||
|
private RoundedImageView avatar;
|
||||||
|
private TextView info;
|
||||||
|
private TextView link;
|
||||||
|
private List<ShareBuilder> data;
|
||||||
|
|
||||||
|
private String uid;
|
||||||
|
private String anchorId;
|
||||||
|
private String anchorName;
|
||||||
|
private String anchorAvatar;
|
||||||
|
|
||||||
|
public InviteRewardPopDialog(@NonNull Context context) {
|
||||||
|
super(context);
|
||||||
|
}
|
||||||
|
|
||||||
|
public InviteRewardPopDialog setUid(String uid) {
|
||||||
|
this.uid = uid;
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
public InviteRewardPopDialog setAnchorId(String anchorId) {
|
||||||
|
this.anchorId = anchorId;
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
public InviteRewardPopDialog setAnchorName(String anchorName) {
|
||||||
|
this.anchorName = anchorName;
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
public InviteRewardPopDialog setAnchorAvatar(String anchorAvatar) {
|
||||||
|
this.anchorAvatar = anchorAvatar;
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void buildDialog(XPopup.Builder builder) {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int bindLayoutId() {
|
||||||
|
return R.layout.dialog_share;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void onCreate() {
|
||||||
|
super.onCreate();
|
||||||
|
findViewById(R.id.close).setOnClickListener(v -> dismiss());
|
||||||
|
findViewById(R.id.share_copy).setOnClickListener(v -> copyLink());
|
||||||
|
findViewById(R.id.share_title).setOnClickListener(v -> copyLink());
|
||||||
|
findViewById(R.id.share_preview).setVisibility(GONE);
|
||||||
|
findViewById(R.id.share_dialog).setBackgroundResource(R.mipmap.bg_dialog_inviet);
|
||||||
|
((TextView) findViewById(R.id.share_title)).setText(R.string.dialog_invite_title);
|
||||||
|
((TextView) findViewById(R.id.share_title)).setTextColor(R.drawable.bg_invite_title);
|
||||||
|
list = findViewById(R.id.share_apps_list);
|
||||||
|
avatar = findViewById(R.id.share_avatar);
|
||||||
|
info = findViewById(R.id.share_info);
|
||||||
|
link = findViewById(R.id.share_link);
|
||||||
|
adapter = new ShareAppAdapter(getContext());
|
||||||
|
list.setLayoutManager(new LinearLayoutManager(getContext(),RecyclerView.VERTICAL,false));
|
||||||
|
list.setAdapter(adapter);
|
||||||
|
initData();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void initData() {
|
||||||
|
data = new ArrayList<>();
|
||||||
|
data.add(builder(ShareBuilder.APP_FACEBOOK));
|
||||||
|
data.add(builder(ShareBuilder.APP_LINE));
|
||||||
|
data.add(builder(ShareBuilder.APP_TWITTER));
|
||||||
|
data.add(builder(ShareBuilder.APP_WHATSAPP));
|
||||||
|
data.add(builder(ShareBuilder.APP_MESSENGER));
|
||||||
|
// data.add(builder(ShareBuilder.APP_INSTAGRAM));
|
||||||
|
adapter.setList(data);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
private ShareBuilder builder(int type) {
|
||||||
|
ShareBuilder builder = ShareBuilder.builder(type);
|
||||||
|
//builder.setText(WordUtil.getString(R.string.dialog_share_info));
|
||||||
|
builder.setLink(ShareBuilder.createInviteLink(uid));
|
||||||
|
builder.setUid(uid);
|
||||||
|
builder.setAnchorId(anchorId);
|
||||||
|
builder.setAnchorName(anchorName);
|
||||||
|
builder.setAnchorAvatar(anchorAvatar);
|
||||||
|
return builder;
|
||||||
|
}
|
||||||
|
|
||||||
|
private void copyLink() {
|
||||||
|
ClipboardManager cm = (ClipboardManager) getContext().getSystemService(CLIPBOARD_SERVICE);
|
||||||
|
ClipData clipData = ClipData.newPlainText("text", link.getText().toString());
|
||||||
|
cm.setPrimaryClip(clipData);
|
||||||
|
ToastUtil.show(WordUtil.getString(com.yunbao.common.R.string.copy_success));
|
||||||
|
DialogUitl.showSimpleDialog(getContext(), ShareBuilder.createInviteLink(uid), new DialogUitl.SimpleCallback() {
|
||||||
|
@Override
|
||||||
|
public void onConfirmClick(Dialog dialog, String content) {
|
||||||
|
dialog.dismiss();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
119
Share/src/main/java/com/yunbao/share/ui/SharePopDialog.java
Normal file
@ -0,0 +1,119 @@
|
|||||||
|
package com.yunbao.share.ui;
|
||||||
|
|
||||||
|
import static android.content.Context.CLIPBOARD_SERVICE;
|
||||||
|
|
||||||
|
import android.content.ClipData;
|
||||||
|
import android.content.ClipboardManager;
|
||||||
|
import android.content.Context;
|
||||||
|
import android.widget.TextView;
|
||||||
|
|
||||||
|
import androidx.annotation.NonNull;
|
||||||
|
import androidx.recyclerview.widget.GridLayoutManager;
|
||||||
|
import androidx.recyclerview.widget.RecyclerView;
|
||||||
|
|
||||||
|
import com.lxj.xpopup.XPopup;
|
||||||
|
import com.makeramen.roundedimageview.RoundedImageView;
|
||||||
|
import com.pdlive.shayu.R;
|
||||||
|
import com.yunbao.common.dialog.AbsDialogPopupWindow;
|
||||||
|
import com.yunbao.common.glide.ImgLoader;
|
||||||
|
import com.yunbao.common.utils.ToastUtil;
|
||||||
|
import com.yunbao.common.utils.WordUtil;
|
||||||
|
import com.yunbao.share.bean.ShareBuilder;
|
||||||
|
import com.yunbao.share.adapters.ShareAppAdapter;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
public class SharePopDialog extends AbsDialogPopupWindow {
|
||||||
|
private ShareAppAdapter adapter;
|
||||||
|
private RecyclerView list;
|
||||||
|
private RoundedImageView avatar;
|
||||||
|
private TextView info;
|
||||||
|
private TextView link;
|
||||||
|
private List<ShareBuilder> data;
|
||||||
|
|
||||||
|
private String uid;
|
||||||
|
private String anchorId;
|
||||||
|
private String anchorName;
|
||||||
|
private String anchorAvatar;
|
||||||
|
|
||||||
|
public SharePopDialog(@NonNull Context context) {
|
||||||
|
super(context);
|
||||||
|
}
|
||||||
|
|
||||||
|
public SharePopDialog setUid(String uid) {
|
||||||
|
this.uid = uid;
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
public SharePopDialog setAnchorId(String anchorId) {
|
||||||
|
this.anchorId = anchorId;
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
public SharePopDialog setAnchorName(String anchorName) {
|
||||||
|
this.anchorName = anchorName;
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
public SharePopDialog setAnchorAvatar(String anchorAvatar) {
|
||||||
|
this.anchorAvatar = anchorAvatar;
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void buildDialog(XPopup.Builder builder) {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int bindLayoutId() {
|
||||||
|
return R.layout.dialog_share;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void onCreate() {
|
||||||
|
super.onCreate();
|
||||||
|
findViewById(R.id.close).setOnClickListener(v -> dismiss());
|
||||||
|
findViewById(R.id.share_copy).setOnClickListener(v -> copyLink());
|
||||||
|
list = findViewById(R.id.share_apps_list);
|
||||||
|
avatar = findViewById(R.id.share_avatar);
|
||||||
|
info = findViewById(R.id.share_info);
|
||||||
|
link = findViewById(R.id.share_link);
|
||||||
|
adapter = new ShareAppAdapter(getContext());
|
||||||
|
list.setLayoutManager(new GridLayoutManager(getContext(), 3));
|
||||||
|
list.setAdapter(adapter);
|
||||||
|
initData();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void initData() {
|
||||||
|
data = new ArrayList<>();
|
||||||
|
data.add(builder(ShareBuilder.APP_FACEBOOK));
|
||||||
|
data.add(builder(ShareBuilder.APP_LINE));
|
||||||
|
data.add(builder(ShareBuilder.APP_TWITTER));
|
||||||
|
data.add(builder(ShareBuilder.APP_WHATSAPP));
|
||||||
|
data.add(builder(ShareBuilder.APP_MESSENGER));
|
||||||
|
//data.add(builder(ShareBuilder.APP_INSTAGRAM));
|
||||||
|
adapter.setList(data);
|
||||||
|
String url=ShareBuilder.createLiveShareLink(uid,anchorId,anchorName,anchorAvatar).substring(0,40)+"...";
|
||||||
|
link.setText(url);
|
||||||
|
ImgLoader.display(getContext(),anchorAvatar,avatar);
|
||||||
|
}
|
||||||
|
private ShareBuilder builder(int type){
|
||||||
|
ShareBuilder builder=ShareBuilder.builder(type);
|
||||||
|
builder.setText(WordUtil.getString(R.string.dialog_share_info));
|
||||||
|
builder.setUid(uid);
|
||||||
|
builder.setAnchorId(anchorId);
|
||||||
|
builder.setAnchorName(anchorName);
|
||||||
|
builder.setAnchorAvatar(anchorAvatar);
|
||||||
|
return builder;
|
||||||
|
}
|
||||||
|
|
||||||
|
private void copyLink() {
|
||||||
|
ClipboardManager cm = (ClipboardManager) getContext().getSystemService(CLIPBOARD_SERVICE);
|
||||||
|
ClipData clipData = ClipData.newPlainText("text", ShareBuilder.createLiveShareLink(uid,anchorId,anchorName,anchorAvatar));
|
||||||
|
cm.setPrimaryClip(clipData);
|
||||||
|
ToastUtil.show(WordUtil.getString(com.yunbao.common.R.string.copy_success));
|
||||||
|
}
|
||||||
|
}
|
9
Share/src/main/res/drawable/background_fff.xml
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
|
<item>
|
||||||
|
<shape android:shape="rectangle">
|
||||||
|
<corners android:radius="15dp" />
|
||||||
|
<solid android:color="#ffffff" />
|
||||||
|
</shape>
|
||||||
|
</item>
|
||||||
|
</selector>
|
9
Share/src/main/res/drawable/bg_btn.xml
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
|
<item android:width="189dp" android:height="42dp">
|
||||||
|
<shape android:shape="rectangle">
|
||||||
|
<gradient android:type="linear" android:useLevel="true" android:startColor="#ffffc621" android:endColor="#ffffae05" android:angle="135" />
|
||||||
|
<corners android:radius="21dp" />
|
||||||
|
</shape>
|
||||||
|
</item>
|
||||||
|
</selector>
|
10
Share/src/main/res/drawable/bg_invite_title.xml
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
|
<item android:width="112dp" android:height="42dp">
|
||||||
|
<shape android:shape="rectangle">
|
||||||
|
<stroke android:width="1dp" android:color="#ffffffff" />
|
||||||
|
<gradient android:type="linear" android:useLevel="true" android:startColor="#3377FF" android:endColor="#7F66FF" android:angle="90" />
|
||||||
|
<corners android:topLeftRadius="22dp" android:topRightRadius="22dp" android:bottomLeftRadius="22dp" android:bottomRightRadius="22dp" />
|
||||||
|
</shape>
|
||||||
|
</item>
|
||||||
|
</selector>
|
56
Share/src/main/res/layout/dialog_invite_list.xml
Normal file
@ -0,0 +1,56 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||||
|
xmlns:tools="http://schemas.android.com/tools"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:id="@+id/share_dialog"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:background="@mipmap/bg_dialog_share">
|
||||||
|
|
||||||
|
<LinearLayout
|
||||||
|
android:id="@+id/linearLayout2"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="0dp"
|
||||||
|
android:layout_marginTop="16dp"
|
||||||
|
android:orientation="horizontal"
|
||||||
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
|
app:layout_constraintTop_toTopOf="parent">
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/share_title"
|
||||||
|
android:layout_width="0dp"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginStart="16dp"
|
||||||
|
android:layout_weight="1"
|
||||||
|
android:text="@string/dialog_invite_title"
|
||||||
|
android:textColor="@drawable/bg_invite_title"
|
||||||
|
android:textSize="16sp"
|
||||||
|
android:textStyle="bold" />
|
||||||
|
|
||||||
|
<ImageView
|
||||||
|
android:id="@+id/close"
|
||||||
|
android:layout_width="24dp"
|
||||||
|
android:layout_height="24dp"
|
||||||
|
android:layout_marginEnd="16dp"
|
||||||
|
app:srcCompat="@mipmap/icon_dialog_charge_close" />
|
||||||
|
|
||||||
|
</LinearLayout>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<androidx.recyclerview.widget.RecyclerView
|
||||||
|
android:id="@+id/share_apps_list"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="200dp"
|
||||||
|
android:layout_marginTop="16dp"
|
||||||
|
android:layout_marginBottom="16dp"
|
||||||
|
app:layout_constraintBottom_toBottomOf="parent"
|
||||||
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
|
app:layout_constraintTop_toBottomOf="@+id/linearLayout2"
|
||||||
|
tools:itemCount="6"
|
||||||
|
tools:layoutManager="GridLayoutManager"
|
||||||
|
tools:listitem="@layout/item_share_app"
|
||||||
|
tools:spanCount="3" />
|
||||||
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
66
Share/src/main/res/layout/dialog_share.xml
Normal file
@ -0,0 +1,66 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||||
|
xmlns:tools="http://schemas.android.com/tools"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:id="@+id/share_dialog"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:background="@mipmap/bg_dialog_share">
|
||||||
|
|
||||||
|
<LinearLayout
|
||||||
|
android:id="@+id/linearLayout2"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="0dp"
|
||||||
|
android:layout_marginTop="16dp"
|
||||||
|
android:orientation="horizontal"
|
||||||
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
|
app:layout_constraintTop_toTopOf="parent">
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/share_title"
|
||||||
|
android:layout_width="0dp"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginStart="16dp"
|
||||||
|
android:layout_weight="1"
|
||||||
|
android:text="@string/dialog_share_title"
|
||||||
|
android:textColor="#333333"
|
||||||
|
android:textSize="16sp"
|
||||||
|
android:textStyle="bold" />
|
||||||
|
|
||||||
|
<ImageView
|
||||||
|
android:id="@+id/close"
|
||||||
|
android:layout_width="24dp"
|
||||||
|
android:layout_height="24dp"
|
||||||
|
android:layout_marginEnd="16dp"
|
||||||
|
app:srcCompat="@mipmap/icon_dialog_charge_close" />
|
||||||
|
|
||||||
|
</LinearLayout>
|
||||||
|
|
||||||
|
<include
|
||||||
|
android:id="@+id/share_preview"
|
||||||
|
layout="@layout/view_share_preview"
|
||||||
|
android:layout_width="0dp"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginStart="16dp"
|
||||||
|
android:layout_marginTop="14dp"
|
||||||
|
android:layout_marginEnd="16dp"
|
||||||
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
|
app:layout_constraintTop_toBottomOf="@+id/linearLayout2" />
|
||||||
|
|
||||||
|
<androidx.recyclerview.widget.RecyclerView
|
||||||
|
android:id="@+id/share_apps_list"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="200dp"
|
||||||
|
android:layout_marginTop="16dp"
|
||||||
|
android:layout_marginBottom="16dp"
|
||||||
|
app:layout_constraintBottom_toBottomOf="parent"
|
||||||
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
|
app:layout_constraintTop_toBottomOf="@+id/share_preview"
|
||||||
|
tools:itemCount="6"
|
||||||
|
tools:layoutManager="GridLayoutManager"
|
||||||
|
tools:listitem="@layout/item_share_app"
|
||||||
|
tools:spanCount="3" />
|
||||||
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
46
Share/src/main/res/layout/item_invite_reward.xml
Normal file
@ -0,0 +1,46 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="match_parent">
|
||||||
|
|
||||||
|
<LinearLayout
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="0dp"
|
||||||
|
android:orientation="horizontal"
|
||||||
|
android:gravity="center"
|
||||||
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
|
app:layout_constraintTop_toTopOf="parent">
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/item1"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:gravity="center"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_weight="1"
|
||||||
|
android:text="TextView" />
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/item2"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:gravity="center"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_weight="1"
|
||||||
|
android:text="TextView" />
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/item3"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:gravity="center"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_weight="1"
|
||||||
|
android:text="TextView" />
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/item4"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:gravity="center"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_weight="1"
|
||||||
|
android:text="TextView" />
|
||||||
|
</LinearLayout>
|
||||||
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
34
Share/src/main/res/layout/item_share_app.xml
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||||
|
xmlns:tools="http://schemas.android.com/tools"
|
||||||
|
android:id="@+id/linearLayout"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content">
|
||||||
|
|
||||||
|
<ImageView
|
||||||
|
android:id="@+id/share_app_icon"
|
||||||
|
android:layout_width="56dp"
|
||||||
|
android:layout_height="56dp"
|
||||||
|
android:layout_marginStart="35dp"
|
||||||
|
android:layout_marginTop="12dp"
|
||||||
|
android:layout_marginEnd="35dp"
|
||||||
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
|
app:layout_constraintTop_toTopOf="parent"
|
||||||
|
tools:src="@tools:sample/avatars" />
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/share_app_name"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginTop="8dp"
|
||||||
|
android:layout_marginBottom="12dp"
|
||||||
|
android:text="TextView"
|
||||||
|
android:textColor="#666666"
|
||||||
|
android:textSize="12sp"
|
||||||
|
app:layout_constraintBottom_toBottomOf="parent"
|
||||||
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
|
app:layout_constraintTop_toBottomOf="@+id/share_app_icon" />
|
||||||
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
74
Share/src/main/res/layout/view_share_preview.xml
Normal file
@ -0,0 +1,74 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||||
|
xmlns:tools="http://schemas.android.com/tools"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:background="@drawable/background_fff"
|
||||||
|
android:orientation="vertical">
|
||||||
|
|
||||||
|
<LinearLayout
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginStart="12dp"
|
||||||
|
android:layout_marginTop="12dp"
|
||||||
|
android:layout_marginEnd="12dp"
|
||||||
|
android:orientation="horizontal">
|
||||||
|
|
||||||
|
<com.makeramen.roundedimageview.RoundedImageView
|
||||||
|
android:id="@+id/share_avatar"
|
||||||
|
android:layout_width="40dp"
|
||||||
|
android:layout_height="40dp"
|
||||||
|
android:scaleType="centerCrop"
|
||||||
|
android:src="@drawable/m_chu_xia"
|
||||||
|
app:riv_oval="true" />
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/share_info"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="match_parent"
|
||||||
|
android:layout_marginStart="12dp"
|
||||||
|
android:text="@string/dialog_share_info"
|
||||||
|
android:layout_weight="1"
|
||||||
|
android:textColor="#333333"
|
||||||
|
android:textSize="12sp"
|
||||||
|
/>
|
||||||
|
|
||||||
|
<Button
|
||||||
|
android:id="@+id/share_copy"
|
||||||
|
android:layout_width="70dp"
|
||||||
|
android:layout_height="32dp"
|
||||||
|
android:layout_gravity="center"
|
||||||
|
android:layout_marginEnd="16dp"
|
||||||
|
android:layout_weight="0.01"
|
||||||
|
android:background="@drawable/bg_btn"
|
||||||
|
android:text="复制"
|
||||||
|
android:textColor="@color/white"
|
||||||
|
android:textSize="16sp" />
|
||||||
|
</LinearLayout>
|
||||||
|
|
||||||
|
<LinearLayout
|
||||||
|
android:id="@+id/share_layout_link"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginStart="12dp"
|
||||||
|
android:layout_marginBottom="12dp"
|
||||||
|
android:layout_marginTop="8dp"
|
||||||
|
android:layout_marginEnd="12dp"
|
||||||
|
android:orientation="horizontal">
|
||||||
|
|
||||||
|
<ImageView
|
||||||
|
android:layout_width="16dp"
|
||||||
|
android:layout_height="16dp"
|
||||||
|
android:src="@mipmap/icon_share_url" />
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/share_link"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginStart="8dp"
|
||||||
|
android:text="TextView"
|
||||||
|
android:textColor="#999999"
|
||||||
|
android:textSize="12sp" />
|
||||||
|
</LinearLayout>
|
||||||
|
</LinearLayout>
|
BIN
Share/src/main/res/mipmap/bg_dialog_inviet.png
Normal file
After Width: | Height: | Size: 315 KiB |
BIN
Share/src/main/res/mipmap/bg_dialog_share.png
Normal file
After Width: | Height: | Size: 83 KiB |
BIN
Share/src/main/res/mipmap/icon_share_facebook.png
Normal file
After Width: | Height: | Size: 5.5 KiB |
BIN
Share/src/main/res/mipmap/icon_share_instagram.png
Normal file
After Width: | Height: | Size: 6.3 KiB |
BIN
Share/src/main/res/mipmap/icon_share_line.png
Normal file
After Width: | Height: | Size: 7.8 KiB |
BIN
Share/src/main/res/mipmap/icon_share_messenger.png
Normal file
After Width: | Height: | Size: 6.2 KiB |
BIN
Share/src/main/res/mipmap/icon_share_twitter.png
Normal file
After Width: | Height: | Size: 5.9 KiB |
BIN
Share/src/main/res/mipmap/icon_share_url.png
Normal file
After Width: | Height: | Size: 955 B |
BIN
Share/src/main/res/mipmap/icon_share_whatsapp.png
Normal file
After Width: | Height: | Size: 7.2 KiB |
@ -1,4 +1,15 @@
|
|||||||
<resources>
|
<resources>
|
||||||
<string name="com.twitter.sdk.android.CONSUMER_KEY" translatable="false">ZWRrZnRUNlBlcHVxMXpsMzVmb2k6MTpjaQ</string>
|
<string name="com.twitter.sdk.android.CONSUMER_KEY" translatable="false">ZWRrZnRUNlBlcHVxMXpsMzVmb2k6MTpjaQ</string>
|
||||||
<string name="com.twitter.sdk.android.CONSUMER_SECRET" translatable="false">aq0eV4R1pqMK_AAeKRWnjPr7ErGMGgTPGgZJdm73WeRY-Kluws</string>
|
<string name="com.twitter.sdk.android.CONSUMER_SECRET" translatable="false">aq0eV4R1pqMK_AAeKRWnjPr7ErGMGgTPGgZJdm73WeRY-Kluws</string>
|
||||||
|
|
||||||
|
<string name="dialog_share_title">分享</string>
|
||||||
|
<string name="dialog_share_info">快來 PDLIVE觀看主播名稱直播,認識更多有趣的朋友吧!</string>
|
||||||
|
<string name="dialog_share_app_facebook" translatable="false">Facebook</string>
|
||||||
|
<string name="dialog_share_app_line" translatable="false">Line</string>
|
||||||
|
<string name="dialog_share_app_twitter" translatable="false">Twitter</string>
|
||||||
|
<string name="dialog_share_app_whatsapp" translatable="false">WhatsApp</string>
|
||||||
|
<string name="dialog_share_app_messenger" translatable="false">Messenger</string>
|
||||||
|
<string name="dialog_share_app_instagram" translatable="false">Instagram</string>
|
||||||
|
|
||||||
|
<string name="dialog_invite_title">邀請好友</string>
|
||||||
</resources>
|
</resources>
|
@ -21,6 +21,8 @@ public class CustomDrawerPopupEvent extends BaseModel {
|
|||||||
private boolean reportLayout = false;
|
private boolean reportLayout = false;
|
||||||
//刷新
|
//刷新
|
||||||
private boolean refresh = false;
|
private boolean refresh = false;
|
||||||
|
//特效設置
|
||||||
|
private boolean effects = false;
|
||||||
|
|
||||||
public boolean isRefresh() {
|
public boolean isRefresh() {
|
||||||
return refresh;
|
return refresh;
|
||||||
@ -102,4 +104,13 @@ public class CustomDrawerPopupEvent extends BaseModel {
|
|||||||
isDisMiss = disMiss;
|
isDisMiss = disMiss;
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public boolean isEffects() {
|
||||||
|
return effects;
|
||||||
|
}
|
||||||
|
|
||||||
|
public CustomDrawerPopupEvent setEffects(boolean effects) {
|
||||||
|
this.effects = effects;
|
||||||
|
return this;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -93,13 +93,13 @@ public class CustomDrawerPopupView extends DrawerPopupView {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
//特效设置
|
//分享
|
||||||
ViewClicksAntiShake.clicksAntiShake(findViewById(R.id.effects_settings_layout), new ViewClicksAntiShake.ViewClicksCallBack() {
|
ViewClicksAntiShake.clicksAntiShake(findViewById(R.id.share_layout), new ViewClicksAntiShake.ViewClicksCallBack() {
|
||||||
@Override
|
@Override
|
||||||
public void onViewClicks() {
|
public void onViewClicks() {
|
||||||
dismiss();
|
dismiss();
|
||||||
if (callBack != null) {
|
if (callBack != null) {
|
||||||
callBack.effectsSetting();
|
callBack.share();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
@ -203,6 +203,8 @@ public class CustomDrawerPopupView extends DrawerPopupView {
|
|||||||
void online();
|
void online();
|
||||||
|
|
||||||
void reportLayout();
|
void reportLayout();
|
||||||
|
|
||||||
|
void share();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Subscribe(threadMode = ThreadMode.MAIN)
|
@Subscribe(threadMode = ThreadMode.MAIN)
|
||||||
@ -233,6 +235,10 @@ public class CustomDrawerPopupView extends DrawerPopupView {
|
|||||||
dismiss();
|
dismiss();
|
||||||
callBack.reportLayout();
|
callBack.reportLayout();
|
||||||
}
|
}
|
||||||
|
if(event.isEffects()){
|
||||||
|
dismiss();
|
||||||
|
callBack.effectsSetting();
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
if (event.isRefresh()) {
|
if (event.isRefresh()) {
|
||||||
|
@ -22,6 +22,15 @@ public class MoreMenuPopupView extends AttachPopupView {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void onCreate() {
|
protected void onCreate() {
|
||||||
|
//特效设置
|
||||||
|
ViewClicksAntiShake.clicksAntiShake(findViewById(R.id.effects_settings_layout), new ViewClicksAntiShake.ViewClicksCallBack() {
|
||||||
|
@Override
|
||||||
|
public void onViewClicks() {
|
||||||
|
dismiss();
|
||||||
|
Bus.get().post(new CustomDrawerPopupEvent()
|
||||||
|
.setDisMiss(true).setEffects(true));
|
||||||
|
}
|
||||||
|
});
|
||||||
//系统通知
|
//系统通知
|
||||||
ViewClicksAntiShake.clicksAntiShake(findViewById(R.id.system_notice), new ViewClicksAntiShake.ViewClicksCallBack() {
|
ViewClicksAntiShake.clicksAntiShake(findViewById(R.id.system_notice), new ViewClicksAntiShake.ViewClicksCallBack() {
|
||||||
@Override
|
@Override
|
||||||
|
@ -41,27 +41,6 @@
|
|||||||
android:textSize="10sp" />
|
android:textSize="10sp" />
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
|
||||||
<LinearLayout
|
|
||||||
android:id="@+id/effects_settings_layout"
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:layout_marginStart="12dp"
|
|
||||||
android:gravity="center"
|
|
||||||
android:orientation="vertical">
|
|
||||||
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="26dp"
|
|
||||||
android:layout_height="26dp"
|
|
||||||
android:src="@mipmap/live_more_icon_special_new" />
|
|
||||||
|
|
||||||
<TextView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:layout_marginTop="6dp"
|
|
||||||
android:text="@string/effects_settings"
|
|
||||||
android:textColor="#FF9A9A9A"
|
|
||||||
android:textSize="10sp" />
|
|
||||||
</LinearLayout>
|
|
||||||
|
|
||||||
<LinearLayout
|
<LinearLayout
|
||||||
android:id="@+id/slide_settings_layout"
|
android:id="@+id/slide_settings_layout"
|
||||||
@ -85,6 +64,28 @@
|
|||||||
android:textSize="10sp" />
|
android:textSize="10sp" />
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
|
||||||
|
<LinearLayout
|
||||||
|
android:id="@+id/share_layout"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginStart="12dp"
|
||||||
|
android:gravity="center"
|
||||||
|
android:orientation="vertical">
|
||||||
|
|
||||||
|
<ImageView
|
||||||
|
android:layout_width="26dp"
|
||||||
|
android:layout_height="26dp"
|
||||||
|
android:src="@mipmap/ic_custom_share" />
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginTop="6dp"
|
||||||
|
android:text="分享設置"
|
||||||
|
android:textColor="#FF9A9A9A"
|
||||||
|
android:textSize="10sp" />
|
||||||
|
</LinearLayout>
|
||||||
|
|
||||||
<LinearLayout
|
<LinearLayout
|
||||||
android:id="@+id/float_settings_layout"
|
android:id="@+id/float_settings_layout"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<androidx.cardview.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
|
<androidx.cardview.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||||
android:layout_width="176dp"
|
android:layout_width="220dp"
|
||||||
android:layout_height="62dp"
|
android:layout_height="62dp"
|
||||||
app:cardBackgroundColor="#0F0B14"
|
app:cardBackgroundColor="#0F0B14"
|
||||||
app:cardCornerRadius="4dp"
|
app:cardCornerRadius="4dp"
|
||||||
@ -11,6 +11,27 @@
|
|||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent"
|
||||||
android:gravity="center_vertical">
|
android:gravity="center_vertical">
|
||||||
|
<LinearLayout
|
||||||
|
android:id="@+id/effects_settings_layout"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginStart="10dp"
|
||||||
|
android:gravity="center"
|
||||||
|
android:orientation="vertical">
|
||||||
|
|
||||||
|
<ImageView
|
||||||
|
android:layout_width="26dp"
|
||||||
|
android:layout_height="26dp"
|
||||||
|
android:src="@mipmap/live_more_icon_special_new" />
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginTop="2dp"
|
||||||
|
android:text="@string/effects_settings"
|
||||||
|
android:textColor="#FF9A9A9A"
|
||||||
|
android:textSize="10sp" />
|
||||||
|
</LinearLayout>
|
||||||
|
|
||||||
<LinearLayout
|
<LinearLayout
|
||||||
android:id="@+id/system_notice"
|
android:id="@+id/system_notice"
|
||||||
|
BIN
common/src/main/res/mipmap-xxhdpi/ic_custom_share.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
@ -1 +1 @@
|
|||||||
apply plugin: 'com.android.library'
apply plugin: 'img-optimizer'
apply plugin: 'kotlin-android'
android {
compileSdkVersion rootProject.ext.android.compileSdkVersion
buildToolsVersion rootProject.ext.android.buildToolsVersion
aaptOptions.cruncherEnabled = false
aaptOptions.useNewCruncher = false
packagingOptions {
pickFirst "lib/armeabi/libyuvutils.so"
pickFirst "lib/arm64-v8a/libyuvutils.so"
pickFirst "lib/armeabi-v7a/libyuvutils.so"
pickFirst "lib/armeabi/libyuvtools.so"
pickFirst "lib/arm64-v8a/libyuvtools.so"
pickFirst "lib/armeabi-v7a/libyuvtools.so"
exclude "lib/arm64-v8a/libmmcv_api_handgesture.so"
exclude "lib/arm64-v8a/libmmcv_api_express.so"
exclude "lib/arm64-v8a/libMediaEncoder.so"
exclude "lib/arm64-v8a/libarcore_sdk_c.so"
exclude "lib/arm64-v8a/libmediadecoder.so"
exclude "lib/arm64-v8a/libMediaMuxer.so"
exclude "lib/arm64-v8a/libarcore_sdk_jni.so"
exclude "lib/arm64-v8a/libMediaUtils.so"
exclude "lib/arm64-v8a/libcosmosffmpeg.so"
}
defaultConfig {
minSdkVersion rootProject.ext.android.minSdkVersion
targetSdkVersion rootProject.ext.android.targetSdkVersion
versionCode rootProject.ext.android.versionCode
versionName rootProject.ext.android.versionName
manifestPlaceholders = rootProject.ext.manifestPlaceholders
ndk {
abiFilters "armeabi-v7a", "arm64-v8a"
}
javaCompileOptions {
annotationProcessorOptions {
arguments = [AROUTER_MODULE_NAME: project.getName()]
}
}
}
aaptOptions {
cruncherEnabled = false
useNewCruncher = false
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
kotlinOptions {
allWarningsAsErrors = true
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}
repositories {
flatDir {
dirs 'libs', '../libs'
}
mavenCentral()
}
dependencies {
implementation 'androidx.constraintlayout:constraintlayout:2.0.0'
implementation fileTree(dir: 'libs', include: ['*.jar', '*.aar'])
implementation (name:'../libs/beautysdk-202202241203',ext:'aar')
implementation (name:'../libs/svgaplayer-release-v1.2.1',ext:'aar')
//socket.io
implementation('io.socket:socket.io-client:1.0.0') {
exclude group: 'org.json', module: 'json'
}
//common
api project(path: ':common')
api project(path:':FaceUnity')//新娱美颜
annotationProcessor rootProject.ext.dependencies["arouter-compiler"]
//工具
api rootProject.ext.dependencies["blank-utilcode"]
implementation 'com.eightbitlab:blurview:1.6.6'
implementation 'com.google.code.gson:gson:2.8.6'
implementation "com.getkeepsafe.relinker:relinker:1.4.4"
//ExoPlayer,腾讯的播放器不支持无缝切换
implementation 'com.google.android.exoplayer:exoplayer:2.18.2'
implementation 'com.google.android.exoplayer:exoplayer-core:2.18.2@aar'
}
|
apply plugin: 'com.android.library'
apply plugin: 'img-optimizer'
apply plugin: 'kotlin-android'
android {
compileSdkVersion rootProject.ext.android.compileSdkVersion
buildToolsVersion rootProject.ext.android.buildToolsVersion
aaptOptions.cruncherEnabled = false
aaptOptions.useNewCruncher = false
packagingOptions {
pickFirst "lib/armeabi/libyuvutils.so"
pickFirst "lib/arm64-v8a/libyuvutils.so"
pickFirst "lib/armeabi-v7a/libyuvutils.so"
pickFirst "lib/armeabi/libyuvtools.so"
pickFirst "lib/arm64-v8a/libyuvtools.so"
pickFirst "lib/armeabi-v7a/libyuvtools.so"
exclude "lib/arm64-v8a/libmmcv_api_handgesture.so"
exclude "lib/arm64-v8a/libmmcv_api_express.so"
exclude "lib/arm64-v8a/libMediaEncoder.so"
exclude "lib/arm64-v8a/libarcore_sdk_c.so"
exclude "lib/arm64-v8a/libmediadecoder.so"
exclude "lib/arm64-v8a/libMediaMuxer.so"
exclude "lib/arm64-v8a/libarcore_sdk_jni.so"
exclude "lib/arm64-v8a/libMediaUtils.so"
exclude "lib/arm64-v8a/libcosmosffmpeg.so"
}
defaultConfig {
minSdkVersion rootProject.ext.android.minSdkVersion
targetSdkVersion rootProject.ext.android.targetSdkVersion
versionCode rootProject.ext.android.versionCode
versionName rootProject.ext.android.versionName
manifestPlaceholders = rootProject.ext.manifestPlaceholders
ndk {
abiFilters "armeabi-v7a", "arm64-v8a"
}
javaCompileOptions {
annotationProcessorOptions {
arguments = [AROUTER_MODULE_NAME: project.getName()]
}
}
}
aaptOptions {
cruncherEnabled = false
useNewCruncher = false
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
kotlinOptions {
allWarningsAsErrors = true
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}
repositories {
flatDir {
dirs 'libs', '../libs'
}
mavenCentral()
}
dependencies {
implementation 'androidx.constraintlayout:constraintlayout:2.0.0'
implementation fileTree(dir: 'libs', include: ['*.jar', '*.aar'])
implementation (name:'../libs/beautysdk-202202241203',ext:'aar')
implementation (name:'../libs/svgaplayer-release-v1.2.1',ext:'aar')
//socket.io
implementation('io.socket:socket.io-client:1.0.0') {
exclude group: 'org.json', module: 'json'
}
//common
api project(path: ':common')
api project(path:':FaceUnity')//新娱美颜
api project(':Share')//分享
annotationProcessor rootProject.ext.dependencies["arouter-compiler"]
//工具
api rootProject.ext.dependencies["blank-utilcode"]
implementation 'com.eightbitlab:blurview:1.6.6'
implementation 'com.google.code.gson:gson:2.8.6'
implementation "com.getkeepsafe.relinker:relinker:1.4.4"
//ExoPlayer,腾讯的播放器不支持无缝切换
implementation 'com.google.android.exoplayer:exoplayer:2.18.2'
implementation 'com.google.android.exoplayer:exoplayer-core:2.18.2@aar'
}
|
@ -101,6 +101,7 @@ import com.yunbao.live.http.LiveHttpUtil;
|
|||||||
import com.yunbao.live.presenter.LiveRoomCheckLivePresenter;
|
import com.yunbao.live.presenter.LiveRoomCheckLivePresenter;
|
||||||
import com.yunbao.live.views.LiveRoomPlayViewHolder;
|
import com.yunbao.live.views.LiveRoomPlayViewHolder;
|
||||||
import com.yunbao.live.views.PortraitLiveManager;
|
import com.yunbao.live.views.PortraitLiveManager;
|
||||||
|
import com.yunbao.share.ui.SharePopDialog;
|
||||||
|
|
||||||
import org.greenrobot.eventbus.EventBus;
|
import org.greenrobot.eventbus.EventBus;
|
||||||
import org.greenrobot.eventbus.Subscribe;
|
import org.greenrobot.eventbus.Subscribe;
|
||||||
@ -909,6 +910,13 @@ public class LiveAudienceActivity extends LiveActivity {
|
|||||||
.setBean(mLiveBean)
|
.setBean(mLiveBean)
|
||||||
.setType(LiveAudienceEvent.LiveAudienceType.REPORT));
|
.setType(LiveAudienceEvent.LiveAudienceType.REPORT));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void share() {
|
||||||
|
Bus.get().post(new LiveAudienceEvent()
|
||||||
|
.setBean(mLiveBean)
|
||||||
|
.setType(LiveAudienceEvent.LiveAudienceType.LIVE_SHARE));
|
||||||
|
}
|
||||||
});
|
});
|
||||||
new XPopup.Builder(mContext)
|
new XPopup.Builder(mContext)
|
||||||
.hasShadowBg(false)
|
.hasShadowBg(false)
|
||||||
@ -1280,6 +1288,14 @@ public class LiveAudienceActivity extends LiveActivity {
|
|||||||
case LIVE_HIDE_MSG_RED:
|
case LIVE_HIDE_MSG_RED:
|
||||||
showMsgRed(-1);
|
showMsgRed(-1);
|
||||||
break;
|
break;
|
||||||
|
case LIVE_SHARE:
|
||||||
|
new SharePopDialog(mContext)
|
||||||
|
.setUid(CommonAppConfig.getInstance().getUid())
|
||||||
|
.setAnchorId(event.getBean().getUid())
|
||||||
|
.setAnchorName(event.getBean().getUserNiceName())
|
||||||
|
.setAnchorAvatar(event.getBean().getAvatar())
|
||||||
|
.showDialog();
|
||||||
|
break;
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -300,7 +300,8 @@ public class LiveAudienceEvent extends BaseModel {
|
|||||||
LIVE_VIDEO(54, "画质选择"),
|
LIVE_VIDEO(54, "画质选择"),
|
||||||
LUCKY_100_CHECK(55, "幸运百分百"),
|
LUCKY_100_CHECK(55, "幸运百分百"),
|
||||||
LIVE_END(56, "主播下播"),
|
LIVE_END(56, "主播下播"),
|
||||||
LIVE_HIDE_MSG_RED(57,"隐藏红点");
|
LIVE_HIDE_MSG_RED(57,"隐藏红点"),
|
||||||
|
LIVE_SHARE(58,"直播間分享");
|
||||||
|
|
||||||
private int type;
|
private int type;
|
||||||
private String name;
|
private String name;
|
||||||
|
@ -2,27 +2,15 @@ package com.yunbao.main.activity;
|
|||||||
|
|
||||||
import android.content.Intent;
|
import android.content.Intent;
|
||||||
import android.os.Bundle;
|
import android.os.Bundle;
|
||||||
import android.os.Environment;
|
|
||||||
import android.text.SpannableStringBuilder;
|
|
||||||
import android.util.Log;
|
import android.util.Log;
|
||||||
import android.view.View;
|
|
||||||
import android.widget.AdapterView;
|
|
||||||
import android.widget.ArrayAdapter;
|
|
||||||
import android.widget.ListView;
|
import android.widget.ListView;
|
||||||
import android.widget.TextView;
|
import android.widget.TextView;
|
||||||
|
|
||||||
import androidx.appcompat.app.AppCompatActivity;
|
import androidx.appcompat.app.AppCompatActivity;
|
||||||
|
|
||||||
import com.yunbao.common.utils.ToastUtil;
|
|
||||||
import com.yunbao.main.R;
|
|
||||||
import com.yunbao.share.ICallback;
|
|
||||||
import com.yunbao.share.ShareBuilder;
|
|
||||||
import com.yunbao.share.ShareManager;
|
|
||||||
import com.yunbao.share.platform.FacebookShare;
|
import com.yunbao.share.platform.FacebookShare;
|
||||||
import com.yunbao.share.platform.MessengerShare;
|
import com.yunbao.share.platform.MessengerShare;
|
||||||
|
|
||||||
import java.io.File;
|
|
||||||
|
|
||||||
|
|
||||||
public class TestActivity extends AppCompatActivity {
|
public class TestActivity extends AppCompatActivity {
|
||||||
private TextView contextLayout;
|
private TextView contextLayout;
|
||||||
@ -33,65 +21,6 @@ public class TestActivity extends AppCompatActivity {
|
|||||||
super.onCreate(savedInstanceState);
|
super.onCreate(savedInstanceState);
|
||||||
listView = new ListView(this);
|
listView = new ListView(this);
|
||||||
setContentView(listView);
|
setContentView(listView);
|
||||||
String[] strs = new String[]{
|
|
||||||
"Twitter",
|
|
||||||
"Facebook",
|
|
||||||
"Instagram",
|
|
||||||
"WhatsApp",
|
|
||||||
"Messenger",
|
|
||||||
"Line"
|
|
||||||
};
|
|
||||||
String filename = "/ztest/myPhoto.jpg";
|
|
||||||
String mediaPath = Environment.getExternalStorageDirectory() + filename;
|
|
||||||
File media = new File(mediaPath);
|
|
||||||
ShareBuilder builder = new ShareBuilder()
|
|
||||||
.setFile(media)
|
|
||||||
.setLink("https://www.baidu.com")
|
|
||||||
.setText("测试Test https://www.baidu.com");
|
|
||||||
ICallback callback = new ICallback() {
|
|
||||||
@Override
|
|
||||||
public void onSuccess() {
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void onFailure() {
|
|
||||||
ToastUtil.show("分享失败,应用未安装");
|
|
||||||
}
|
|
||||||
};
|
|
||||||
listView.setAdapter(new ArrayAdapter<String>(this, android.R.layout.simple_expandable_list_item_1, strs));
|
|
||||||
listView.setOnItemClickListener(new AdapterView.OnItemClickListener() {
|
|
||||||
@Override
|
|
||||||
public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
|
|
||||||
switch (position) {
|
|
||||||
case 0:
|
|
||||||
ShareManager.getInstance(TestActivity.this)
|
|
||||||
.createShare(builder, TestActivity.this, ShareManager.SHARE_Twitter, callback);
|
|
||||||
break;
|
|
||||||
case 1:
|
|
||||||
ShareManager.getInstance(TestActivity.this)
|
|
||||||
.createShare(builder, TestActivity.this, ShareManager.SHARE_Facebook, callback);
|
|
||||||
break;
|
|
||||||
case 4:
|
|
||||||
ShareManager.getInstance(TestActivity.this)
|
|
||||||
.createShare(builder, TestActivity.this, ShareManager.SHARE_Messenger, callback);
|
|
||||||
break;
|
|
||||||
case 2:
|
|
||||||
ShareManager.getInstance(TestActivity.this)
|
|
||||||
.createShare(builder, TestActivity.this, ShareManager.SHARE_Instagram, callback);
|
|
||||||
break;
|
|
||||||
case 3:
|
|
||||||
ShareManager.getInstance(TestActivity.this)
|
|
||||||
.createShare(builder, TestActivity.this, ShareManager.SHARE_WhatsApp, callback);
|
|
||||||
break;
|
|
||||||
case 5:
|
|
||||||
ShareManager.getInstance(TestActivity.this)
|
|
||||||
.createShare(builder, TestActivity.this, ShareManager.SHARE_Line, callback);
|
|
||||||
break;
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -14,6 +14,8 @@ import com.yunbao.live.dialog.LiveRobotSettingDialogFragment;
|
|||||||
import com.yunbao.main.R;
|
import com.yunbao.main.R;
|
||||||
import com.yunbao.main.activity.MainActivity;
|
import com.yunbao.main.activity.MainActivity;
|
||||||
import com.yunbao.main.activity.TestActivity;
|
import com.yunbao.main.activity.TestActivity;
|
||||||
|
import com.yunbao.share.ui.InvitePopDialog;
|
||||||
|
import com.yunbao.share.ui.SharePopDialog;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Created by cxf on 2018/9/22.
|
* Created by cxf on 2018/9/22.
|
||||||
@ -48,7 +50,12 @@ public class MainHomeViewHolder extends AbsMainHomeParentViewHolder {
|
|||||||
ImgLoader.display(mContext, "https://downs.yaoulive.com/gif_trophy.gif", img_trophy);
|
ImgLoader.display(mContext, "https://downs.yaoulive.com/gif_trophy.gif", img_trophy);
|
||||||
|
|
||||||
img_trophy.setOnLongClickListener(v -> {
|
img_trophy.setOnLongClickListener(v -> {
|
||||||
new LiveAnchorSayPopDialog(mContext).setLiveUid("98275").showDialog();
|
new InvitePopDialog(mContext)
|
||||||
|
.setUid("98275")
|
||||||
|
.setAnchorId("98274")
|
||||||
|
.setAnchorName("用户_98274")
|
||||||
|
.setAnchorAvatar("https://napi.yaoulive.com/default.jpg")
|
||||||
|
.showDialog();
|
||||||
return false;
|
return false;
|
||||||
});
|
});
|
||||||
|
|
||||||
|