Initial commit
This commit is contained in:
72
resources/res/layout/activity_interest_fans.xml
Normal file
72
resources/res/layout/activity_interest_fans.xml
Normal file
@@ -0,0 +1,72 @@
|
||||
<?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:id="@+id/rootView"
|
||||
android:background="@color/bg_cc596F80"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
<androidx.constraintlayout.widget.Guideline
|
||||
android:orientation="vertical"
|
||||
android:id="@+id/guidelineV219"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
app:layout_constraintGuide_percent="@dimen/user_center_fans_percent_left"/>
|
||||
<androidx.constraintlayout.widget.Guideline
|
||||
android:orientation="vertical"
|
||||
android:id="@+id/guidelineV781"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
app:layout_constraintGuide_percent="@dimen/user_center_fans_percent_right"/>
|
||||
<androidx.constraintlayout.widget.Guideline
|
||||
android:orientation="horizontal"
|
||||
android:id="@+id/guidelineH132"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
app:layout_constraintGuide_percent="@dimen/user_center_fans_percent_top"/>
|
||||
<androidx.constraintlayout.widget.Guideline
|
||||
android:orientation="horizontal"
|
||||
android:id="@+id/guidelineH868"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
app:layout_constraintGuide_percent="@dimen/user_center_fans_percent_bottom"/>
|
||||
<androidx.cardview.widget.CardView
|
||||
android:layout_gravity="center"
|
||||
android:id="@+id/centerCardView"
|
||||
android:clickable="true"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="0dp"
|
||||
android:alpha="1"
|
||||
app:cardCornerRadius="@dimen/user_center_fans_bg_corner"
|
||||
app:cardElevation="0dp"
|
||||
app:layout_constraintBottom_toTopOf="@+id/guidelineH868"
|
||||
app:layout_constraintLeft_toRightOf="@+id/guidelineV219"
|
||||
app:layout_constraintRight_toLeftOf="@+id/guidelineV781"
|
||||
app:layout_constraintTop_toBottomOf="@+id/guidelineH132">
|
||||
<FrameLayout
|
||||
android:orientation="vertical"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content">
|
||||
<androidx.viewpager.widget.ViewPager
|
||||
android:id="@+id/interestFansViewPager"
|
||||
android:background="@color/bg_F9F9F9"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_marginTop="@dimen/action_bar_height"/>
|
||||
<LinearLayout
|
||||
android:background="@color/bg_F9F9F9"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content">
|
||||
<com.ubt.jimu.main.widget.TabBarView
|
||||
android:layout_gravity="center"
|
||||
android:id="@+id/tabBar"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="@dimen/user_center_fans_item_left_margin"
|
||||
android:layout_marginRight="@dimen/user_center_fans_item_right_margin"
|
||||
app:tb_textArray="@array/tab_fans"
|
||||
app:tb_textColor="@color/txt_00A9FF"
|
||||
app:tb_textSelectedColor="@color/theme_txt_orange"
|
||||
app:tb_textSize="@dimen/title15"/>
|
||||
</LinearLayout>
|
||||
</FrameLayout>
|
||||
</androidx.cardview.widget.CardView>
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
Reference in New Issue
Block a user