Skip to content

Commit

Permalink
small quick actions tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
Razeeman committed Jul 7, 2024
1 parent d708b3e commit aacae9d
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,6 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginHorizontal="5dp"
android:layout_marginTop="16dp"
app:flexWrap="wrap"
app:justifyContent="center"
app:layout_constraintTop_toBottomOf="@id/btnRecordQuickActionsDelete">
Expand All @@ -129,7 +128,7 @@

<androidx.appcompat.widget.AppCompatImageView
android:id="@+id/ivRecordQuickActionsContinue"
style="@style/EditScreenControlButtonImage"
style="@style/RecordQuickActionButtonImage"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:src="@drawable/action_continue"
Expand All @@ -140,7 +139,7 @@

<androidx.appcompat.widget.AppCompatTextView
android:id="@+id/tvRecordQuickActionsContinue"
style="@style/EditScreenControlButtonText"
style="@style/RecordQuickActionButtonText"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:text="@string/change_record_continue"
Expand All @@ -164,7 +163,7 @@

<androidx.appcompat.widget.AppCompatImageView
android:id="@+id/ivRecordQuickActionsRepeat"
style="@style/EditScreenControlButtonImage"
style="@style/RecordQuickActionButtonImage"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:src="@drawable/repeat"
Expand All @@ -175,7 +174,7 @@

<androidx.appcompat.widget.AppCompatTextView
android:id="@+id/tvRecordQuickActionsRepeat"
style="@style/EditScreenControlButtonText"
style="@style/RecordQuickActionButtonText"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:text="@string/change_record_repeat"
Expand All @@ -200,7 +199,7 @@

<androidx.appcompat.widget.AppCompatImageView
android:id="@+id/ivRecordQuickActionsDuplicate"
style="@style/EditScreenControlButtonImage"
style="@style/RecordQuickActionButtonImage"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:src="@drawable/action_copy"
Expand All @@ -211,7 +210,7 @@

<androidx.appcompat.widget.AppCompatTextView
android:id="@+id/tvRecordQuickActionsDuplicate"
style="@style/EditScreenControlButtonText"
style="@style/RecordQuickActionButtonText"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:text="@string/change_record_duplicate"
Expand All @@ -235,7 +234,7 @@

<androidx.appcompat.widget.AppCompatImageView
android:id="@+id/ivRecordQuickActionsMerge"
style="@style/EditScreenControlButtonImage"
style="@style/RecordQuickActionButtonImage"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:src="@drawable/action_merge"
Expand All @@ -246,7 +245,7 @@

<androidx.appcompat.widget.AppCompatTextView
android:id="@+id/tvRecordQuickActionsMerge"
style="@style/EditScreenControlButtonText"
style="@style/RecordQuickActionButtonText"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:text="@string/change_record_merge"
Expand Down
10 changes: 9 additions & 1 deletion features/feature_views/src/main/res/values/styles.xml
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,15 @@

<style name="RecordQuickActionButton" parent="EditScreenControlButton">
<item name="android:layout_height">68dp</item>
<item name="cardBackgroundColor">?appBackgroundColor</item>
<item name="cardBackgroundColor">?appActiveColor</item>
</style>

<style name="RecordQuickActionButtonImage" parent="EditScreenControlButtonImage">
<item name="android:tint">?appLightTextColor</item>
</style>

<style name="RecordQuickActionButtonText" parent="EditScreenControlButtonText">
<item name="android:textColor">?appLightTextColor</item>
</style>

</resources>
2 changes: 1 addition & 1 deletion metadata/ru/full_description.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Simple Time Tracker помогает вам отслеживать, сколько времени вы тратите в течение дня на разные дела. Начните фиксировать новые дела одним щелчком мыши. Просматривайте предыдущие записи и статистику времени. Приложение бесплатное и с открытым исходным кодом. Также есть виджеты, резервное копирование, уведомления и темный режим. Также поддерживаются часы с Wear OS и есть дополнение.
Simple Time Tracker помогает вам отслеживать, сколько времени вы тратите в течение дня на разные дела. Начните фиксировать новые дела одним нажатием. Просматривайте предыдущие записи и статистику времени. Приложение бесплатное и с открытым исходным кодом. Также есть виджеты, резервное копирование, уведомления и темный режим. Также поддерживаются часы с Wear OS и есть дополнение.

<b>Простой интерфейс</b>
Приложение имеет минималистичный интерфейс, которым очень легко пользоваться.
Expand Down

0 comments on commit aacae9d

Please sign in to comment.