commit
4fbc01af05
@ -0,0 +1,9 @@ |
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android" |
||||
android:width="24dp" |
||||
android:height="24dp" |
||||
android:viewportWidth="24.0" |
||||
android:viewportHeight="24.0"> |
||||
<path |
||||
android:fillColor="#FF000000" |
||||
android:pathData="M3,13h2v-2L3,11v2zM3,17h2v-2L3,15v2zM3,9h2L5,7L3,7v2zM7,13h14v-2L7,11v2zM7,17h14v-2L7,15v2zM7,7v2h14L21,7L7,7z"/> |
||||
</vector> |
||||
@ -1,52 +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="280dp" |
||||
android:layout_gravity="center" |
||||
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" |
||||
android:gravity="center" |
||||
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" /> |
||||
|
||||
<androidx.appcompat.widget.AppCompatImageView |
||||
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