mirror of
https://github.com/wulkanowy/wulkanowy.git
synced 2025-01-18 21:06:45 -06:00
Fix about header layout to support long app names (for DEV builds) (#1602)
Co-authored-by: Mikołaj Pich <m.pich@outlook.com>
This commit is contained in:
parent
1d910f8d66
commit
26c749c219
@ -74,7 +74,7 @@ android {
|
||||
buildConfigField "String", "MESSAGES_BASE_URL", "\"https://messages.wulkanowy.net.pl\""
|
||||
}
|
||||
debug {
|
||||
resValue "string", "app_name", "Wulkanowy DEV " + defaultConfig.versionCode
|
||||
resValue "string", "app_name", "Wulkanowy DEV"
|
||||
applicationIdSuffix ".dev"
|
||||
versionNameSuffix "-dev"
|
||||
ext.enableCrashlytics = project.hasProperty("enableFirebase")
|
||||
|
@ -6,6 +6,7 @@
|
||||
android:layout_height="wrap_content"
|
||||
android:minHeight="104dp"
|
||||
android:orientation="vertical"
|
||||
android:paddingHorizontal="20dp"
|
||||
tools:context=".ui.modules.about.AboutAdapter">
|
||||
|
||||
<ImageView
|
||||
@ -23,12 +24,13 @@
|
||||
|
||||
<TextView
|
||||
android:id="@+id/aboutScrollableHeaderName"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/app_name"
|
||||
android:textSize="24sp"
|
||||
app:layout_constraintBottom_toBottomOf="@id/aboutScrollableHeaderIcon"
|
||||
app:layout_constraintLeft_toRightOf="@id/aboutScrollableHeaderIcon"
|
||||
app:layout_constraintRight_toRightOf="parent"
|
||||
app:layout_constraintTop_toTopOf="@id/aboutScrollableHeaderIcon" />
|
||||
app:layout_constraintTop_toTopOf="@id/aboutScrollableHeaderIcon"
|
||||
app:layout_constraintWidth_max="wrap" />
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
|
Loading…
x
Reference in New Issue
Block a user