首页
|
Before Width: | Height: | Size: 29 KiB After Width: | Height: | Size: 60 KiB |
|
Before Width: | Height: | Size: 60 KiB After Width: | Height: | Size: 147 KiB |
@@ -3,7 +3,5 @@
|
||||
android:shape="oval">
|
||||
|
||||
<solid android:color="#6CE4B7"/>
|
||||
<size android:height="@dimen/dp8" android:width="@dimen/dp8"/>
|
||||
<stroke android:width="@dimen/dp1" android:color="@color/white"/>
|
||||
|
||||
</shape>
|
||||
7
app/src/main/res/drawable/shape_999999_oval_bg.xml
Normal file
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="oval">
|
||||
|
||||
<solid android:color="#999999"/>
|
||||
|
||||
</shape>
|
||||
7
app/src/main/res/drawable/shape_f2b854_oval_bg.xml
Normal file
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="oval">
|
||||
|
||||
<solid android:color="#F2B854"/>
|
||||
|
||||
</shape>
|
||||
@@ -1,9 +1,10 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
<gradient
|
||||
android:angle="270"
|
||||
android:endColor="#EE7874"
|
||||
android:startColor="#F3C89B" />
|
||||
<!-- <gradient-->
|
||||
<!-- android:angle="270"-->
|
||||
<!-- android:endColor="#EE7874"-->
|
||||
<!-- android:startColor="#F3C89B" />-->
|
||||
<solid android:color="@color/yellow_ffd33e"/>
|
||||
<corners android:radius="10dp" />
|
||||
</shape>
|
||||
@@ -184,6 +184,7 @@
|
||||
</RelativeLayout>
|
||||
|
||||
<RelativeLayout
|
||||
android:visibility="gone"
|
||||
android:id="@+id/bind_certification"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="48dp"
|
||||
@@ -226,6 +227,7 @@
|
||||
</RelativeLayout>
|
||||
|
||||
<RelativeLayout
|
||||
android:visibility="gone"
|
||||
android:id="@+id/bind_phone_confirm_weixin"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="48dp"
|
||||
@@ -268,6 +270,7 @@
|
||||
</RelativeLayout>
|
||||
|
||||
<RelativeLayout
|
||||
android:visibility="gone"
|
||||
android:id="@+id/bind_phone_confirm_qq"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="48dp"
|
||||
|
||||
74
app/src/main/res/layout/activity_gender_activity.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="match_parent"
|
||||
android:orientation="vertical"
|
||||
tools:viewBindingIgnore="true">
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/ll_content_layout"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:orientation="vertical">
|
||||
|
||||
<com.scwang.smartrefresh.layout.SmartRefreshLayout
|
||||
android:id="@+id/smart_refresh"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:visibility="visible">
|
||||
|
||||
<com.scwang.smartrefresh.layout.header.ClassicsHeader
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
app:srlEnableLastTime="false" />
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:orientation="vertical">
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/rl_no_data"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center"
|
||||
android:layout_marginTop="@dimen/dp100"
|
||||
android:gravity="center"
|
||||
android:orientation="vertical"
|
||||
android:visibility="gone">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="@dimen/dp150"
|
||||
android:layout_height="@dimen/dp88"
|
||||
android:src="@mipmap/icon_img_no_black" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="@dimen/dp5"
|
||||
android:text="暂无数据"
|
||||
android:textColor="@color/three_text"
|
||||
android:textSize="13sp" />
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:orientation="vertical">
|
||||
|
||||
<androidx.recyclerview.widget.RecyclerView
|
||||
android:id="@+id/rv_recommend_list"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent" />
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
|
||||
<com.scwang.smartrefresh.layout.footer.ClassicsFooter
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content" />
|
||||
</com.scwang.smartrefresh.layout.SmartRefreshLayout>
|
||||
</LinearLayout>
|
||||
|
||||
</LinearLayout>
|
||||
74
app/src/main/res/layout/activity_intimacy.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="match_parent"
|
||||
android:orientation="vertical"
|
||||
tools:viewBindingIgnore="true">
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/ll_content_layout"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:orientation="vertical">
|
||||
|
||||
<com.scwang.smartrefresh.layout.SmartRefreshLayout
|
||||
android:id="@+id/smart_refresh"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:visibility="visible">
|
||||
|
||||
<com.scwang.smartrefresh.layout.header.ClassicsHeader
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
app:srlEnableLastTime="false" />
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:orientation="vertical">
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/rl_no_data"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center"
|
||||
android:layout_marginTop="@dimen/dp100"
|
||||
android:gravity="center"
|
||||
android:orientation="vertical"
|
||||
android:visibility="gone">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="@dimen/dp150"
|
||||
android:layout_height="@dimen/dp88"
|
||||
android:src="@mipmap/icon_img_no_black" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="@dimen/dp5"
|
||||
android:text="暂无数据"
|
||||
android:textColor="@color/three_text"
|
||||
android:textSize="13sp" />
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:orientation="vertical">
|
||||
|
||||
<androidx.recyclerview.widget.RecyclerView
|
||||
android:id="@+id/rv_recommend_list"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent" />
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
|
||||
<com.scwang.smartrefresh.layout.footer.ClassicsFooter
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content" />
|
||||
</com.scwang.smartrefresh.layout.SmartRefreshLayout>
|
||||
</LinearLayout>
|
||||
|
||||
</LinearLayout>
|
||||
@@ -396,7 +396,7 @@
|
||||
android:layout_marginStart="16dp"
|
||||
android:layout_marginTop="28dp"
|
||||
android:layout_marginEnd="16dp"
|
||||
android:background="@drawable/open_vip_btn"
|
||||
android:background="@drawable/shape_button_enable"
|
||||
android:gravity="center"
|
||||
android:text="开通会员"
|
||||
android:textColor="@color/white"
|
||||
|
||||
@@ -51,7 +51,7 @@
|
||||
android:layout_marginLeft="6dp"
|
||||
android:layout_weight="1"
|
||||
android:text="特权"
|
||||
android:textColor="@color/white"
|
||||
android:textColor="#814D1A"
|
||||
android:textSize="16sp"
|
||||
android:textStyle="bold" />
|
||||
|
||||
@@ -67,7 +67,7 @@
|
||||
android:layout_height="16dp"
|
||||
android:scaleType="fitXY"
|
||||
app:roundAsCircle="true"
|
||||
app:roundingBorderColor="@color/white"
|
||||
app:roundingBorderColor="#814D1A"
|
||||
app:roundingBorderWidth="2dp" />
|
||||
|
||||
<TextView
|
||||
@@ -76,7 +76,7 @@
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="6dp"
|
||||
android:text="你还未开通VIP"
|
||||
android:textColor="@color/white"
|
||||
android:textColor="#814D1A"
|
||||
android:textSize="16sp"
|
||||
android:textStyle="bold" />
|
||||
</LinearLayout>
|
||||
@@ -87,7 +87,7 @@
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_centerInParent="true"
|
||||
android:text="聊天倾诉,一路陪伴美好时光"
|
||||
android:textColor="@color/white"
|
||||
android:textColor="@color/one_text"
|
||||
android:textSize="15sp"
|
||||
android:textStyle="bold" />
|
||||
</RelativeLayout>
|
||||
@@ -134,7 +134,7 @@
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginEnd="7dp"
|
||||
android:layout_weight="1"
|
||||
android:background="@drawable/vip_select_bg2"
|
||||
android:background="@mipmap/new_vip_select_bg2"
|
||||
android:orientation="vertical"
|
||||
android:paddingTop="16dp">
|
||||
|
||||
@@ -166,7 +166,7 @@
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="¥"
|
||||
android:textColor="#F9C644"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="12dp" />
|
||||
|
||||
<TextView
|
||||
@@ -174,7 +174,7 @@
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="18"
|
||||
android:textColor="#F9C644"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="28dp"
|
||||
android:textStyle="bold" />
|
||||
</LinearLayout>
|
||||
@@ -185,7 +185,7 @@
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginBottom="16dp"
|
||||
android:text="¥38"
|
||||
android:textColor="#80FFFFFF"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="12dp"
|
||||
fresco:layout_constraintBottom_toBottomOf="parent"
|
||||
fresco:layout_constraintEnd_toEndOf="parent"
|
||||
@@ -200,7 +200,7 @@
|
||||
android:layout_marginStart="7dp"
|
||||
android:layout_marginEnd="7dp"
|
||||
android:layout_weight="1"
|
||||
android:background="@drawable/vip_select_bg1"
|
||||
android:background="@mipmap/new_vip_select_bg1"
|
||||
android:orientation="vertical">
|
||||
|
||||
<TextView
|
||||
@@ -232,7 +232,7 @@
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="¥"
|
||||
android:textColor="#F9C644"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="12dp" />
|
||||
|
||||
<TextView
|
||||
@@ -240,7 +240,7 @@
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="128"
|
||||
android:textColor="#F9C644"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="28dp"
|
||||
android:textStyle="bold" />
|
||||
</LinearLayout>
|
||||
@@ -251,7 +251,7 @@
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginBottom="16dp"
|
||||
android:text="¥228"
|
||||
android:textColor="#80FFFFFF"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="12dp"
|
||||
fresco:layout_constraintBottom_toBottomOf="parent"
|
||||
fresco:layout_constraintEnd_toEndOf="parent"
|
||||
@@ -273,7 +273,7 @@
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginStart="7dp"
|
||||
android:layout_weight="1"
|
||||
android:background="@drawable/vip_select_bg1"
|
||||
android:background="@mipmap/new_vip_select_bg1"
|
||||
android:orientation="vertical">
|
||||
|
||||
<TextView
|
||||
@@ -305,7 +305,7 @@
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="¥"
|
||||
android:textColor="#F9C644"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="12dp" />
|
||||
|
||||
<TextView
|
||||
@@ -313,7 +313,7 @@
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="18"
|
||||
android:textColor="#F9C644"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="28dp"
|
||||
android:textStyle="bold" />
|
||||
</LinearLayout>
|
||||
@@ -324,7 +324,7 @@
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginBottom="16dp"
|
||||
android:text="¥38"
|
||||
android:textColor="#80FFFFFF"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="12dp"
|
||||
fresco:layout_constraintBottom_toBottomOf="parent"
|
||||
fresco:layout_constraintEnd_toEndOf="parent"
|
||||
|
||||
@@ -11,6 +11,7 @@
|
||||
android:layout_height="@dimen/dp48">
|
||||
|
||||
<LinearLayout
|
||||
android:visibility="gone"
|
||||
android:id="@+id/ll_select"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
@@ -37,6 +38,7 @@
|
||||
</LinearLayout>
|
||||
|
||||
<net.lucode.hackware.magicindicator.MagicIndicator
|
||||
android:layout_marginLeft="6dp"
|
||||
android:id="@+id/magic_indicator"
|
||||
android:layout_width="1000dp"
|
||||
android:layout_height="match_parent"
|
||||
|
||||
@@ -37,7 +37,7 @@
|
||||
android:layout_marginTop="@dimen/dp10"
|
||||
android:layout_marginLeft="@dimen/dp5"
|
||||
android:layout_marginRight="@dimen/dp5"
|
||||
android:layout_marginBottom="@dimen/dp10" />
|
||||
android:layout_marginBottom="@dimen/dp50" />
|
||||
</LinearLayout>
|
||||
|
||||
|
||||
|
||||
@@ -69,7 +69,7 @@
|
||||
android:layout_marginTop="@dimen/dp10"
|
||||
android:layout_marginLeft="@dimen/dp5"
|
||||
android:layout_marginRight="@dimen/dp5"
|
||||
android:layout_marginBottom="@dimen/dp10"
|
||||
android:layout_marginBottom="@dimen/dp50"
|
||||
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
|
||||
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|
||||
|
||||
|
||||
@@ -43,7 +43,7 @@
|
||||
<ImageView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:src="@mipmap/ic_vip_tag" />
|
||||
android:src="@mipmap/ic_svip_tag" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
@@ -134,7 +134,7 @@
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginEnd="7dp"
|
||||
android:layout_weight="1"
|
||||
android:background="@drawable/vip_select_bg2"
|
||||
android:background="@mipmap/svip_select_bg2"
|
||||
android:orientation="vertical"
|
||||
android:paddingTop="16dp">
|
||||
|
||||
@@ -166,7 +166,7 @@
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="¥"
|
||||
android:textColor="#F9C644"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="12dp" />
|
||||
|
||||
<TextView
|
||||
@@ -174,7 +174,7 @@
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="18"
|
||||
android:textColor="#F9C644"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="28dp"
|
||||
android:textStyle="bold" />
|
||||
</LinearLayout>
|
||||
@@ -185,7 +185,7 @@
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginBottom="16dp"
|
||||
android:text="¥38"
|
||||
android:textColor="#80FFFFFF"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="12dp"
|
||||
fresco:layout_constraintBottom_toBottomOf="parent"
|
||||
fresco:layout_constraintEnd_toEndOf="parent"
|
||||
@@ -200,7 +200,7 @@
|
||||
android:layout_marginStart="7dp"
|
||||
android:layout_marginEnd="7dp"
|
||||
android:layout_weight="1"
|
||||
android:background="@drawable/vip_select_bg1"
|
||||
android:background="@mipmap/svip_select_bg1"
|
||||
android:orientation="vertical">
|
||||
|
||||
<TextView
|
||||
@@ -232,7 +232,7 @@
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="¥"
|
||||
android:textColor="#F9C644"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="12dp" />
|
||||
|
||||
<TextView
|
||||
@@ -240,7 +240,7 @@
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="128"
|
||||
android:textColor="#F9C644"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="28dp"
|
||||
android:textStyle="bold" />
|
||||
</LinearLayout>
|
||||
@@ -251,7 +251,7 @@
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginBottom="16dp"
|
||||
android:text="¥228"
|
||||
android:textColor="#80FFFFFF"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="12dp"
|
||||
fresco:layout_constraintBottom_toBottomOf="parent"
|
||||
fresco:layout_constraintEnd_toEndOf="parent"
|
||||
@@ -273,7 +273,7 @@
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginStart="7dp"
|
||||
android:layout_weight="1"
|
||||
android:background="@drawable/vip_select_bg1"
|
||||
android:background="@mipmap/svip_select_bg1"
|
||||
android:orientation="vertical">
|
||||
|
||||
<TextView
|
||||
@@ -305,7 +305,7 @@
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="¥"
|
||||
android:textColor="#F9C644"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="12dp" />
|
||||
|
||||
<TextView
|
||||
@@ -313,7 +313,7 @@
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="18"
|
||||
android:textColor="#F9C644"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="28dp"
|
||||
android:textStyle="bold" />
|
||||
</LinearLayout>
|
||||
@@ -324,7 +324,7 @@
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginBottom="16dp"
|
||||
android:text="¥38"
|
||||
android:textColor="#80FFFFFF"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="12dp"
|
||||
fresco:layout_constraintBottom_toBottomOf="parent"
|
||||
fresco:layout_constraintEnd_toEndOf="parent"
|
||||
|
||||
106
app/src/main/res/layout/item_gender_active.xml
Normal file
@@ -0,0 +1,106 @@
|
||||
<?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:id="@+id/lin_gender_item"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:background="@color/transparent"
|
||||
android:orientation="vertical">
|
||||
|
||||
<com.flyco.roundview.RoundRelativeLayout
|
||||
android:layout_marginTop="8dp"
|
||||
android:layout_marginBottom="8dp"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginHorizontal="@dimen/dp20"
|
||||
android:clipChildren="false"
|
||||
android:paddingVertical="@dimen/dp16"
|
||||
app:rv_backgroundColor="@color/white"
|
||||
app:rv_cornerRadius="10dp">
|
||||
|
||||
<RelativeLayout
|
||||
android:id="@+id/rl_user_head"
|
||||
android:layout_marginLeft="16dp"
|
||||
android:layout_width="@dimen/dp50"
|
||||
android:layout_height="@dimen/dp50">
|
||||
|
||||
<com.facebook.drawee.view.SimpleDraweeView
|
||||
android:id="@+id/user_head"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
app:roundAsCircle="true" />
|
||||
|
||||
<View
|
||||
android:id="@+id/view_online_status"
|
||||
android:layout_alignParentBottom="true"
|
||||
android:layout_alignParentRight="true"
|
||||
android:layout_marginBottom="2dp"
|
||||
android:layout_marginRight="2dp"
|
||||
android:background="@drawable/shape_999999_oval_bg"
|
||||
android:layout_width="10dp"
|
||||
android:layout_height="10dp" />
|
||||
</RelativeLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_centerVertical="true"
|
||||
android:layout_toEndOf="@+id/rl_user_head"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="vertical">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_nick_name"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center_vertical"
|
||||
android:layout_marginStart="10dp"
|
||||
android:gravity="center"
|
||||
android:singleLine="true"
|
||||
android:textColor="@color/one_text"
|
||||
android:textSize="16dp"
|
||||
android:textStyle="bold"
|
||||
tools:text="小可爱" />
|
||||
|
||||
<ImageView
|
||||
android:visibility="gone"
|
||||
android:id="@+id/iv_member_sign"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center_vertical"
|
||||
android:layout_marginLeft="@dimen/dp8"
|
||||
android:src="@drawable/ic_pvip" />
|
||||
</LinearLayout>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_user_info"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginStart="10dp"
|
||||
android:layout_marginTop="4dp"
|
||||
android:text="哈哈哈哈"
|
||||
android:textColor="@color/two_text"
|
||||
android:textSize="12dp" />
|
||||
</LinearLayout>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/iv_luck_hi"
|
||||
android:layout_width="@dimen/dp60"
|
||||
android:layout_height="@dimen/dp30"
|
||||
android:textSize="@dimen/dp12"
|
||||
android:layout_alignParentRight="true"
|
||||
android:layout_centerVertical="true"
|
||||
android:layout_marginRight="@dimen/dp15"
|
||||
android:gravity="center"
|
||||
android:textColor="#E472ED"
|
||||
android:background="@drawable/shape_button_e472ed_border"
|
||||
android:text="聊一聊"/>
|
||||
|
||||
</com.flyco.roundview.RoundRelativeLayout>
|
||||
|
||||
</LinearLayout>
|
||||
@@ -89,12 +89,14 @@
|
||||
android:layout_height="@dimen/dp20">
|
||||
|
||||
<View
|
||||
android:id="@+id/view_online_status"
|
||||
android:layout_gravity="center_vertical"
|
||||
android:background="@drawable/bg_online_round"
|
||||
android:background="@drawable/shape_6ce4b7_oval_bg"
|
||||
android:layout_width="@dimen/dp8"
|
||||
android:layout_height="@dimen/dp8"/>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_online_status"
|
||||
android:layout_gravity="center_vertical"
|
||||
android:layout_marginLeft="@dimen/dp4"
|
||||
android:layout_width="wrap_content"
|
||||
@@ -116,14 +118,62 @@
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="vertical">
|
||||
|
||||
<LinearLayout
|
||||
android:visibility="gone"
|
||||
android:layout_marginBottom="@dimen/dp8"
|
||||
android:id="@+id/ll_star2"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_centerVertical="true"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_star_12"
|
||||
android:layout_width="@dimen/dp14"
|
||||
android:layout_height="@dimen/dp14"
|
||||
android:src="@mipmap/ic_main_star" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_star_22"
|
||||
android:layout_width="@dimen/dp14"
|
||||
android:layout_height="@dimen/dp14"
|
||||
android:layout_marginLeft="@dimen/dp4"
|
||||
android:src="@mipmap/ic_main_star" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_star_32"
|
||||
android:layout_width="@dimen/dp14"
|
||||
android:layout_height="@dimen/dp14"
|
||||
android:layout_marginLeft="@dimen/dp4"
|
||||
android:src="@mipmap/ic_main_star" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_star_42"
|
||||
android:layout_width="@dimen/dp14"
|
||||
android:layout_height="@dimen/dp14"
|
||||
android:layout_marginLeft="@dimen/dp4"
|
||||
android:src="@mipmap/ic_main_star" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_star_52"
|
||||
android:layout_width="@dimen/dp14"
|
||||
android:layout_height="@dimen/dp14"
|
||||
android:layout_marginLeft="@dimen/dp4"
|
||||
android:src="@mipmap/ic_main_star" />
|
||||
</LinearLayout>
|
||||
|
||||
<RelativeLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content">
|
||||
|
||||
<TextView
|
||||
android:layout_centerVertical="true"
|
||||
android:id="@+id/tv_name"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:ellipsize="end"
|
||||
android:maxEms="5"
|
||||
android:maxLines="1"
|
||||
android:text="佳茵ovo"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="12sp"
|
||||
@@ -134,7 +184,7 @@
|
||||
android:layout_alignParentRight="true"
|
||||
android:gravity="center"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="@dimen/dp18"
|
||||
android:layout_height="@dimen/dp16"
|
||||
android:background="@drawable/bg_svip_chat_price">
|
||||
|
||||
<TextView
|
||||
@@ -147,6 +197,7 @@
|
||||
android:textColor="#F5ECCC"/>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_member_price"
|
||||
android:layout_marginRight="@dimen/dp6"
|
||||
android:layout_marginLeft="@dimen/dp4"
|
||||
android:layout_width="wrap_content"
|
||||
@@ -156,6 +207,37 @@
|
||||
android:textSize="@dimen/dp8"
|
||||
/>
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:visibility="gone"
|
||||
android:id="@+id/ll_svip_price2"
|
||||
android:layout_alignParentRight="true"
|
||||
android:gravity="center"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="@dimen/dp28"
|
||||
android:background="@drawable/bg_svip_chat_price">
|
||||
|
||||
<TextView
|
||||
android:layout_marginLeft="@dimen/dp6"
|
||||
android:textSize="@dimen/dp12"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="SVIP"
|
||||
android:textStyle="bold"
|
||||
android:textColor="#F5ECCC"/>
|
||||
|
||||
<TextView
|
||||
android:textStyle="bold"
|
||||
android:id="@+id/tv_member_price2"
|
||||
android:layout_marginRight="@dimen/dp6"
|
||||
android:layout_marginLeft="@dimen/dp32"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="140金币/分"
|
||||
android:textColor="#fff5eccc"
|
||||
android:textSize="@dimen/dp12"
|
||||
/>
|
||||
</LinearLayout>
|
||||
</RelativeLayout>
|
||||
|
||||
<RelativeLayout
|
||||
@@ -164,6 +246,7 @@
|
||||
android:layout_height="wrap_content">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_signature"
|
||||
android:maxEms="6"
|
||||
android:maxLines="1"
|
||||
android:ellipsize="end"
|
||||
@@ -171,17 +254,18 @@
|
||||
android:layout_height="wrap_content"
|
||||
android:text="我说心动至上哈哈哈"
|
||||
android:textColor="#80FFFFFF"
|
||||
android:textSize="12sp"
|
||||
android:textSize="10sp"
|
||||
/>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_price"
|
||||
android:layout_alignParentRight="true"
|
||||
android:layout_centerVertical="true"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="160金币/分"
|
||||
android:textColor="#ffffffff"
|
||||
android:textSize="@dimen/dp8"
|
||||
android:textSize="8dp"
|
||||
/>
|
||||
</RelativeLayout>
|
||||
</LinearLayout>
|
||||
|
||||
186
app/src/main/res/layout/item_intimacy_list.xml
Normal file
@@ -0,0 +1,186 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:fresco="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:orientation="vertical"
|
||||
tools:viewBindingIgnore="true">
|
||||
|
||||
<RelativeLayout
|
||||
android:id="@+id/rl_item"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="80dp">
|
||||
|
||||
<RelativeLayout
|
||||
android:id="@+id/rl_list_photo"
|
||||
android:layout_width="@dimen/dp50"
|
||||
android:layout_height="@dimen/dp50"
|
||||
android:layout_centerVertical="true"
|
||||
android:layout_marginLeft="16dp">
|
||||
|
||||
<com.facebook.drawee.view.SimpleDraweeView
|
||||
android:id="@+id/user_head"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_centerVertical="true"
|
||||
fresco:roundAsCircle="true" />
|
||||
|
||||
<!-- <RelativeLayout-->
|
||||
<!-- android:id="@+id/rl_online_bg"-->
|
||||
<!-- android:layout_width="@dimen/dp30"-->
|
||||
<!-- android:layout_height="@dimen/dp16"-->
|
||||
<!-- android:layout_alignParentBottom="true"-->
|
||||
<!-- android:layout_centerHorizontal="true"-->
|
||||
<!-- android:background="@drawable/look_me_online_bg">-->
|
||||
|
||||
<!-- <TextView-->
|
||||
<!-- android:id="@+id/tv_online"-->
|
||||
<!-- android:layout_width="wrap_content"-->
|
||||
<!-- android:layout_height="wrap_content"-->
|
||||
<!-- android:layout_centerInParent="true"-->
|
||||
<!-- android:text="在线"-->
|
||||
<!-- android:textColor="@color/white"-->
|
||||
<!-- android:textSize="10sp" />-->
|
||||
<!-- </RelativeLayout>-->
|
||||
</RelativeLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_marginLeft="15dp"
|
||||
android:layout_toRightOf="@+id/rl_list_photo"
|
||||
android:gravity="center_vertical"
|
||||
android:orientation="vertical">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="horizontal"
|
||||
android:gravity="center_vertical">
|
||||
|
||||
<TextView
|
||||
android:textStyle="bold"
|
||||
android:id="@+id/tv_nick_name"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="醉红颜"
|
||||
android:textColor="@color/one_text"
|
||||
android:textSize="15sp" />
|
||||
|
||||
<ImageView
|
||||
android:visibility="gone"
|
||||
android:id="@+id/iv_member_sign"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="@dimen/dp8"
|
||||
android:src="@drawable/ic_pvip" />
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
<!-- <TextView-->
|
||||
<!-- android:ellipsize="end"-->
|
||||
<!-- android:maxLines="2"-->
|
||||
<!-- android:layout_marginRight="80dp"-->
|
||||
<!-- android:id="@+id/tv_sign"-->
|
||||
<!-- android:layout_marginTop="@dimen/dp6"-->
|
||||
<!-- android:layout_width="wrap_content"-->
|
||||
<!-- android:layout_height="wrap_content"-->
|
||||
<!-- android:text="很高兴见到你"-->
|
||||
<!-- android:textColor="@color/three_text"-->
|
||||
<!-- android:textSize="12sp" />-->
|
||||
|
||||
<LinearLayout
|
||||
android:gravity="center_vertical"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="16dp"
|
||||
android:layout_height="16dp"
|
||||
android:src="@drawable/ic_guard_love"/>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_intimacy"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="@dimen/dp6"
|
||||
android:text="0"
|
||||
android:textColor="#E53620"
|
||||
android:textSize="14sp" />
|
||||
</LinearLayout>
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
<!-- <LinearLayout-->
|
||||
<!-- android:id="@+id/ll_visit_time"-->
|
||||
<!-- android:layout_width="wrap_content"-->
|
||||
<!-- android:layout_height="wrap_content"-->
|
||||
<!-- android:layout_alignParentRight="true"-->
|
||||
<!-- android:layout_centerVertical="true"-->
|
||||
<!-- android:layout_marginRight="16dp"-->
|
||||
<!-- android:orientation="vertical"-->
|
||||
<!-- android:visibility="gone">-->
|
||||
|
||||
<!-- <TextView-->
|
||||
<!-- android:layout_gravity="end|right"-->
|
||||
<!-- android:id="@+id/tv_add_time"-->
|
||||
<!-- android:layout_marginTop="@dimen/dp6"-->
|
||||
<!-- android:layout_width="wrap_content"-->
|
||||
<!-- android:layout_height="wrap_content"-->
|
||||
<!-- android:text="01/25访问"-->
|
||||
<!-- android:textColor="@color/three_text"-->
|
||||
<!-- android:textSize="12sp" />-->
|
||||
|
||||
<!-- <LinearLayout-->
|
||||
<!-- android:layout_marginTop="@dimen/dp6"-->
|
||||
<!-- android:layout_gravity="center_vertical"-->
|
||||
<!-- android:layout_width="wrap_content"-->
|
||||
<!-- android:layout_height="wrap_content"-->
|
||||
<!-- android:orientation="horizontal">-->
|
||||
|
||||
<!-- <TextView-->
|
||||
<!-- android:layout_width="wrap_content"-->
|
||||
<!-- android:layout_height="wrap_content"-->
|
||||
<!-- android:text="共 "-->
|
||||
<!-- android:textColor="@color/three_text"-->
|
||||
<!-- android:textSize="14sp"-->
|
||||
<!-- />-->
|
||||
|
||||
<!-- <TextView-->
|
||||
<!-- android:id="@+id/tv_visit_number"-->
|
||||
<!-- android:layout_width="wrap_content"-->
|
||||
<!-- android:layout_height="wrap_content"-->
|
||||
<!-- android:text="1次"-->
|
||||
<!-- android:textColor="@color/yellow_ffd33e"-->
|
||||
<!-- android:textSize="14sp"-->
|
||||
<!-- />-->
|
||||
|
||||
<!-- <TextView-->
|
||||
<!-- android:layout_width="wrap_content"-->
|
||||
<!-- android:layout_height="wrap_content"-->
|
||||
<!-- android:text=" 访问"-->
|
||||
<!-- android:textColor="@color/three_text"-->
|
||||
<!-- android:textSize="14sp"-->
|
||||
<!-- />-->
|
||||
<!-- </LinearLayout>-->
|
||||
<!-- </LinearLayout>-->
|
||||
|
||||
<!-- <TextView-->
|
||||
<!-- android:visibility="gone"-->
|
||||
<!-- android:id="@+id/tv_chat"-->
|
||||
<!-- android:layout_width="60dp"-->
|
||||
<!-- android:layout_height="30dp"-->
|
||||
<!-- android:layout_alignParentRight="true"-->
|
||||
<!-- android:layout_centerVertical="true"-->
|
||||
<!-- android:layout_marginRight="16dp"-->
|
||||
<!-- android:background="@drawable/shape_button_enable"-->
|
||||
<!-- android:gravity="center"-->
|
||||
<!-- android:text="发消息"-->
|
||||
<!-- android:textColor="@color/white"-->
|
||||
<!-- android:textSize="12sp" />-->
|
||||
|
||||
</RelativeLayout>
|
||||
|
||||
</LinearLayout>
|
||||
@@ -45,6 +45,19 @@
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent" />
|
||||
|
||||
<TextView
|
||||
android:visibility="gone"
|
||||
android:id="@+id/tv_option_hint2"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="6dp"
|
||||
android:text="开启后只可拨打不能接听"
|
||||
android:textColor="@color/three_text"
|
||||
android:textSize="12dp"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintStart_toEndOf="@+id/setting_option_name"
|
||||
app:layout_constraintTop_toTopOf="parent" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_option_hint"
|
||||
android:layout_width="wrap_content"
|
||||
|
||||
@@ -58,6 +58,7 @@
|
||||
android:orientation="horizontal">
|
||||
|
||||
<TextView
|
||||
android:textStyle="bold"
|
||||
android:layout_weight="1"
|
||||
android:id="@+id/tv_all"
|
||||
android:layout_width="match_parent"
|
||||
@@ -65,19 +66,20 @@
|
||||
android:layout_gravity="center"
|
||||
android:layout_marginRight="@dimen/dp6"
|
||||
android:layout_marginLeft="@dimen/dp6"
|
||||
android:background="@drawable/bg_fb65fd"
|
||||
android:background="@drawable/shape_button_enable"
|
||||
android:gravity="center"
|
||||
android:text="全部"
|
||||
android:textColor="#FFFFFF"
|
||||
android:textSize="@dimen/dp17" />
|
||||
android:textSize="@dimen/dp13" />
|
||||
|
||||
<TextView
|
||||
android:textStyle="bold"
|
||||
android:layout_weight="1"
|
||||
android:id="@+id/tv_boy"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="@dimen/dp44"
|
||||
android:textColor="#999999"
|
||||
android:textSize="@dimen/dp17"
|
||||
android:textSize="@dimen/dp13"
|
||||
android:text="男up"
|
||||
android:layout_gravity="center"
|
||||
android:layout_marginLeft="@dimen/dp6"
|
||||
@@ -86,18 +88,19 @@
|
||||
android:background="@drawable/bg_999999_t10"/>
|
||||
|
||||
<TextView
|
||||
android:textStyle="bold"
|
||||
android:layout_weight="1"
|
||||
android:id="@+id/tv_girl"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="@dimen/dp44"
|
||||
android:textColor="#FFFFFF"
|
||||
android:textSize="@dimen/dp17"
|
||||
android:textColor="#999999"
|
||||
android:textSize="@dimen/dp13"
|
||||
android:layout_marginLeft="@dimen/dp6"
|
||||
android:layout_marginRight="@dimen/dp6"
|
||||
android:text="女up"
|
||||
android:layout_gravity="center"
|
||||
android:gravity="center"
|
||||
android:background="@drawable/bg_fb65fd"/>
|
||||
android:background="@drawable/bg_999999_t10"/>
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
|
||||
|
Before Width: | Height: | Size: 148 KiB After Width: | Height: | Size: 263 KiB |
BIN
app/src/main/res/mipmap-xhdpi/ic_svip_tag.png
Normal file
|
After Width: | Height: | Size: 1.6 KiB |
|
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 904 B |
BIN
app/src/main/res/mipmap-xhdpi/new_vip_select_bg1.png
Normal file
|
After Width: | Height: | Size: 6.9 KiB |
BIN
app/src/main/res/mipmap-xhdpi/new_vip_select_bg2.png
Normal file
|
After Width: | Height: | Size: 7.4 KiB |
BIN
app/src/main/res/mipmap-xhdpi/svip_select_bg1.png
Normal file
|
After Width: | Height: | Size: 9.7 KiB |
BIN
app/src/main/res/mipmap-xhdpi/svip_select_bg2.png
Normal file
|
After Width: | Height: | Size: 10 KiB |
|
Before Width: | Height: | Size: 416 KiB After Width: | Height: | Size: 560 KiB |