parent
47de41044d
commit
48a0e1083f
@ -1,50 +1,53 @@ |
||||
<?xml version="1.0" encoding="utf-8"?> |
||||
<ScrollView 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/content" |
||||
android:layout_width="match_parent" |
||||
android:layout_height="match_parent"> |
||||
xmlns:app="http://schemas.android.com/apk/res-auto" |
||||
xmlns:tools="http://schemas.android.com/tools" |
||||
android:id="@+id/content" |
||||
android:layout_width="match_parent" |
||||
android:layout_height="match_parent"> |
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout |
||||
android:layout_width="wrap_content" |
||||
android:layout_height="wrap_content"> |
||||
<androidx.constraintlayout.widget.ConstraintLayout |
||||
android:layout_width="match_parent" |
||||
android:layout_height="wrap_content" |
||||
android:layout_gravity="center"> |
||||
|
||||
<androidx.appcompat.widget.AppCompatTextView |
||||
android:id="@+id/title" |
||||
app:layout_constraintTop_toTopOf="parent" |
||||
app:layout_constraintStart_toStartOf="parent" |
||||
app:layout_constraintEnd_toEndOf="parent" |
||||
style="@style/PokerAnalyticsTheme.TextView.SubscriptionFeatureTitle" |
||||
android:layout_width="match_parent" |
||||
android:layout_height="wrap_content" |
||||
tools:text="Title"/> |
||||
<androidx.appcompat.widget.AppCompatTextView |
||||
android:id="@+id/title" |
||||
style="@style/PokerAnalyticsTheme.TextView.SubscriptionFeatureTitle" |
||||
android:layout_width="match_parent" |
||||
android:layout_height="wrap_content" |
||||
android:gravity="center" |
||||
app:layout_constraintEnd_toEndOf="parent" |
||||
app:layout_constraintStart_toStartOf="parent" |
||||
app:layout_constraintTop_toTopOf="parent" |
||||
tools:text="Title" /> |
||||
|
||||
<ImageView |
||||
android:id="@+id/icon" |
||||
android:tint="@color/green" |
||||
app:layout_constraintTop_toBottomOf="@id/title" |
||||
app:layout_constraintStart_toStartOf="parent" |
||||
app:layout_constraintEnd_toEndOf="parent" |
||||
android:src="@drawable/ic_baseline_all_inclusive_24px" |
||||
android:layout_width="48dp" |
||||
android:layout_height="48dp" /> |
||||
<androidx.appcompat.widget.AppCompatImageView |
||||
android:id="@+id/icon" |
||||
android:layout_width="48dp" |
||||
android:layout_height="48dp" |
||||
android:src="@drawable/ic_baseline_all_inclusive" |
||||
android:tint="@color/green" |
||||
app:layout_constraintEnd_toEndOf="parent" |
||||
app:layout_constraintStart_toStartOf="parent" |
||||
app:layout_constraintTop_toBottomOf="@id/title" /> |
||||
|
||||
<androidx.appcompat.widget.AppCompatTextView |
||||
android:paddingLeft="24dp" |
||||
android:paddingRight="24dp" |
||||
android:id="@+id/description" |
||||
android:layout_width="match_parent" |
||||
android:layout_height="wrap_content" |
||||
android:gravity="center" |
||||
style="@style/PokerAnalyticsTheme.TextView.SubscriptionFeature" |
||||
app:layout_constraintTop_toBottomOf="@id/icon" |
||||
app:layout_constraintStart_toStartOf="parent" |
||||
app:layout_constraintEnd_toEndOf="parent" |
||||
android:layout_marginTop="20dp" |
||||
android:maxLines="5" |
||||
tools:text="Description qui va avec le text youpi. Il peut y avoir plusieurs ligne de texte oui tout a fait."/> |
||||
<androidx.appcompat.widget.AppCompatTextView |
||||
android:id="@+id/description" |
||||
style="@style/PokerAnalyticsTheme.TextView.SubscriptionFeature" |
||||
android:layout_width="0dp" |
||||
android:layout_height="wrap_content" |
||||
android:layout_marginTop="20dp" |
||||
android:gravity="center" |
||||
android:maxLines="10" |
||||
android:paddingLeft="24dp" |
||||
android:paddingRight="24dp" |
||||
app:layout_constraintEnd_toEndOf="parent" |
||||
app:layout_constraintStart_toStartOf="parent" |
||||
app:layout_constraintTop_toBottomOf="@id/icon" |
||||
app:layout_constraintWidth_percent="0.8" |
||||
tools:text="Description qui va avec le text youpi. Il peut y avoir plusieurs ligne de texte oui tout a fait." /> |
||||
|
||||
</androidx.constraintlayout.widget.ConstraintLayout> |
||||
</androidx.constraintlayout.widget.ConstraintLayout> |
||||
|
||||
</ScrollView> |
||||
|
||||
Loading…
Reference in new issue