|
|
@@ -3,7 +3,8 @@
|
|
|
xmlns:app="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:layout_height="wrap_content"
|
|
|
+ tools:background="@color/black">
|
|
|
|
|
|
<com.adealink.frame.image.view.NetworkImageView
|
|
|
android:id="@+id/iv_bg"
|
|
|
@@ -65,7 +66,7 @@
|
|
|
android:singleLine="true"
|
|
|
android:textColor="@color/white"
|
|
|
android:textSize="12sp"
|
|
|
- android:textStyle="bold"
|
|
|
+ app:fontFamily="@font/poppins_semibold"
|
|
|
app:layout_constrainedWidth="true"
|
|
|
app:layout_constraintBottom_toBottomOf="@id/iv_coin"
|
|
|
app:layout_constraintEnd_toStartOf="@id/right_barrier"
|
|
|
@@ -81,23 +82,44 @@
|
|
|
app:barrierDirection="start"
|
|
|
app:constraint_referenced_ids="btn_order" />
|
|
|
|
|
|
- <androidx.appcompat.widget.AppCompatTextView
|
|
|
+ <androidx.constraintlayout.widget.ConstraintLayout
|
|
|
android:id="@+id/btn_order"
|
|
|
android:layout_width="wrap_content"
|
|
|
android:layout_height="22dp"
|
|
|
android:layout_marginEnd="14dp"
|
|
|
android:background="@drawable/profile_skill_item_order_bg"
|
|
|
- android:fontFamily="@font/poppins_semibold"
|
|
|
- android:gravity="center"
|
|
|
- android:includeFontPadding="false"
|
|
|
android:minWidth="60dp"
|
|
|
- android:paddingHorizontal="6dp"
|
|
|
- android:text="@string/profile_go_order"
|
|
|
- android:textColor="@color/white"
|
|
|
- android:textSize="12sp"
|
|
|
app:layout_constraintBottom_toBottomOf="@id/iv_bg"
|
|
|
app:layout_constraintEnd_toEndOf="@id/iv_bg"
|
|
|
- app:layout_constraintTop_toTopOf="parent" />
|
|
|
+ app:layout_constraintTop_toTopOf="parent">
|
|
|
+
|
|
|
+ <androidx.appcompat.widget.AppCompatTextView
|
|
|
+ android:id="@+id/tv_order_go"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="22dp"
|
|
|
+ android:layout_marginStart="8dp"
|
|
|
+ android:fontFamily="@font/poppins_semibold"
|
|
|
+ android:gravity="center"
|
|
|
+ android:includeFontPadding="false"
|
|
|
+ android:text="@string/profile_go_order"
|
|
|
+ android:textColor="@color/white"
|
|
|
+ android:textSize="12sp"
|
|
|
+ app:layout_constraintBottom_toBottomOf="parent"
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
+ app:layout_constraintTop_toTopOf="parent" />
|
|
|
+
|
|
|
+ <androidx.appcompat.widget.AppCompatImageView
|
|
|
+ android:id="@+id/iv_order_go"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="17dp"
|
|
|
+ android:layout_marginStart="-8dp"
|
|
|
+ android:layout_marginEnd="15.2dp"
|
|
|
+ app:layout_constraintBottom_toBottomOf="parent"
|
|
|
+ app:layout_constraintStart_toEndOf="@id/tv_order_go"
|
|
|
+ app:layout_constraintTop_toTopOf="parent"
|
|
|
+ app:srcCompat="@drawable/profile_order_go_ic" />
|
|
|
+
|
|
|
+ </androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
|
|
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|