2:给所有网络请求添加网络判断,添加拦截器 3:启动页添加启动视频,添加跳过功能 4:去掉抱麦弹框,直接跳转到用户列表 5:修改拍卖房,当抱人上麦后,没有选择关系,然后退出房间再次进来后,显示立即竞拍的按钮 6:修改我的歌单,添加和修改的时候,选择了不能使用的礼物,让dialog不关闭 7:修改点唱房,点一个人同一首歌,右侧下一首歌的作者不显示的问题 8:修改互娱房,选择关系的时候,会出现两次选择关系的问题 9:修改在送背包礼物的时候,最后一个送出,页面没有刷新 10:修改房间设置里面,点击了抽盘,设置页面不关闭的问题 11:修改个性装扮中,购买的装扮展示的时候,出现图片裁剪
102 lines
3.5 KiB
XML
102 lines
3.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<layout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
|
|
|
<data></data>
|
|
|
|
<FrameLayout
|
|
android:id="@+id/root"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="@color/transparent">
|
|
|
|
|
|
<FrameLayout
|
|
android:id="@+id/container"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="#000" />
|
|
|
|
|
|
<FrameLayout
|
|
android:id="@+id/btn_skip_img"
|
|
android:layout_width="40dp"
|
|
android:layout_height="40dp"
|
|
android:layout_gravity="right"
|
|
android:layout_marginTop="37dp"
|
|
android:layout_marginRight="15dp"
|
|
android:background="@drawable/bg_launcher_skip"
|
|
android:visibility="visible">
|
|
|
|
<com.xscm.moduleutil.custon.CircleProgress
|
|
android:id="@+id/progress"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
app:cp_bg_color="@color/white"
|
|
app:cp_cur_progress="0"
|
|
app:cp_fg_color="#ff7200"
|
|
app:cp_stroke_width="2dp" />
|
|
|
|
<TextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:gravity="center"
|
|
android:text="@string/recommend_skip"
|
|
android:textColor="@color/white"
|
|
android:textSize="11sp" />
|
|
|
|
</FrameLayout>
|
|
|
|
<TextView
|
|
android:id="@+id/btn_skip_video"
|
|
android:layout_width="44dp"
|
|
android:layout_height="26dp"
|
|
android:layout_gravity="right"
|
|
android:layout_marginTop="37dp"
|
|
android:layout_marginRight="15dp"
|
|
android:background="@drawable/bg_launcher_skip_2"
|
|
android:gravity="center"
|
|
android:text="@string/recommend_skip"
|
|
android:textColor="@color/white"
|
|
android:textSize="11sp"
|
|
android:visibility="invisible" />
|
|
|
|
<LinearLayout
|
|
android:id="@+id/ad_tip"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="40dp"
|
|
android:layout_gravity="bottom|center_horizontal"
|
|
android:layout_marginBottom="50dp"
|
|
android:background="@drawable/bg_launcher_ad_tip"
|
|
android:gravity="center_vertical"
|
|
android:orientation="horizontal"
|
|
android:paddingLeft="20dp"
|
|
android:paddingRight="20dp"
|
|
android:visibility="invisible">
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/a_067"
|
|
android:textColor="@color/white"
|
|
android:textSize="13sp" />
|
|
|
|
<ImageView
|
|
android:layout_width="13dp"
|
|
android:layout_height="13dp"
|
|
android:src="@mipmap/icon_arrow_right_3" />
|
|
</LinearLayout>
|
|
|
|
|
|
<!-- <ImageView-->
|
|
<!-- android:id="@+id/cover"-->
|
|
<!-- android:layout_width="match_parent"-->
|
|
<!-- android:layout_height="match_parent"-->
|
|
<!-- android:clickable="true"-->
|
|
<!-- android:src="@mipmap/screen"-->
|
|
<!-- android:scaleType="centerCrop"-->
|
|
<!-- android:visibility="visible" />-->
|
|
|
|
</FrameLayout>
|
|
</layout> |