修改问题
This commit is contained in:
parent
69b45f1d21
commit
a100ab1a4a
@ -10,10 +10,11 @@
|
|||||||
<TextView
|
<TextView
|
||||||
android:id="@+id/opening_time"
|
android:id="@+id/opening_time"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
|
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginStart="19dp"
|
android:layout_marginStart="19dp"
|
||||||
android:layout_weight="1"
|
android:layout_weight="1"
|
||||||
android:gravity="center"
|
android:gravity="start"
|
||||||
android:text="@string/one_month"
|
android:text="@string/one_month"
|
||||||
android:textColor="@color/white"
|
android:textColor="@color/white"
|
||||||
android:textSize="14sp" />
|
android:textSize="14sp" />
|
||||||
|
@ -1267,7 +1267,13 @@ public abstract class LiveActivity extends AbsActivity implements SocketMessageL
|
|||||||
if (uid == null) {
|
if (uid == null) {
|
||||||
uid = mLiveUid;
|
uid = mLiveUid;
|
||||||
}
|
}
|
||||||
MobclickAgent.onEvent(mContext, "guardian_people", "守护席点击次数及人数");
|
new Handler().postDelayed(new Runnable() {
|
||||||
|
@Override
|
||||||
|
public void run() {
|
||||||
|
MobclickAgent.onEvent(mContext, "guardian_people", "守护席点击次数及人数");
|
||||||
|
}
|
||||||
|
}, 500);
|
||||||
|
|
||||||
LiveHttpUtil.getGuardList(uid, 1, new HttpCallback() {
|
LiveHttpUtil.getGuardList(uid, 1, new HttpCallback() {
|
||||||
@Override
|
@Override
|
||||||
public void onSuccess(int code, String msg, String[] info) {
|
public void onSuccess(int code, String msg, String[] info) {
|
||||||
|
Loading…
Reference in New Issue
Block a user