Merge pull request #10102 from osmandapp/fix_10100

Fix_10100
This commit is contained in:
Vitaliy 2020-10-29 11:02:28 +02:00 committed by GitHub
commit f7790ef2c7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -9,43 +9,46 @@
<Button <Button
android:id="@+id/feedbackButton" android:id="@+id/feedbackButton"
style="@style/Widget.AppCompat.Button.Borderless"
android:layout_width="0dp" android:layout_width="0dp"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_weight="1" android:layout_weight="1"
android:gravity="center" android:gravity="center"
android:text="@string/feedback" android:text="@string/feedback"
style="@style/Widget.AppCompat.Button.Borderless" android:textColor="?android:textColorSecondary"
tools:drawableTop="@drawable/ic_action_message"/> tools:drawableTop="@drawable/ic_action_message" />
<View <View
android:layout_width="1dp" android:layout_width="1dp"
android:layout_height="match_parent" android:layout_height="match_parent"
android:background="?attr/divider_color"/> android:background="?attr/divider_color" />
<Button <Button
android:id="@+id/contactUsButton" android:id="@+id/contactUsButton"
style="@style/Widget.AppCompat.Button.Borderless"
android:layout_width="0dp" android:layout_width="0dp"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_weight="1" android:layout_weight="1"
android:gravity="center" android:gravity="center"
android:text="@string/contact_us" android:text="@string/contact_us"
style="@style/Widget.AppCompat.Button.Borderless" android:textColor="?android:textColorSecondary"
tools:drawableTop="@drawable/ic_action_message"/> tools:drawableTop="@drawable/ic_action_message" />
<View <View
android:id="@+id/sendLogButtonDiv" android:id="@+id/sendLogButtonDiv"
android:layout_width="1dp" android:layout_width="1dp"
android:layout_height="match_parent" android:layout_height="match_parent"
android:background="?attr/divider_color"/> android:background="?attr/divider_color" />
<Button <Button
android:id="@+id/sendLogButton" android:id="@+id/sendLogButton"
style="@style/Widget.AppCompat.Button.Borderless"
android:layout_width="0dp" android:layout_width="0dp"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_weight="1" android:layout_weight="1"
android:gravity="center" android:gravity="center"
android:text="@string/send_log" android:text="@string/send_log"
style="@style/Widget.AppCompat.Button.Borderless" android:textColor="?android:textColorSecondary"
tools:drawableTop="@drawable/ic_crashlog"/> tools:drawableTop="@drawable/ic_crashlog" />
</LinearLayout> </LinearLayout>