This commit is contained in:
18142669586
2022-07-20 16:57:42 +08:00
parent d150d8d599
commit 31cf3c4e71
13 changed files with 305 additions and 76 deletions

View File

@@ -10,6 +10,16 @@ public class WeekListBean {
private String anchor_name;
private String anchor_avatar;
private String seconds;
private String content="";
public String getContent() {
return content;
}
public WeekListBean setContent(String content) {
this.content = content;
return this;
}
public String getAnchor_id() {
return anchor_id;

View File

@@ -430,6 +430,13 @@ public class CommonHttpUtil {
.execute(callback);
}
//埋点唯一性
public static void setAdvertisingChannels(String operation, HttpCallback callback) {
HttpClient.getInstance().get("Tx.setAdvertisingChannels&marking=safasf", CommonHttpConsts.GET_USER_BASEINFO)
.params("operation", operation)
.execute(callback);
}
}

View File

@@ -61,6 +61,5 @@
style="@android:style/Widget.ProgressBar.Horizontal"
android:layout_width="match_parent"
android:layout_height="3dp"
android:progressDrawable="@drawable/bg_horizontal_progressbar"
android:visibility="gone" />
android:progressDrawable="@drawable/bg_horizontal_progressbar"/>
</LinearLayout>