Skip to content

Commit

Permalink
AGP update, layout fix, added strings
Browse files Browse the repository at this point in the history
  • Loading branch information
nuclearfog committed Dec 16, 2021
1 parent d367b0e commit 6314760
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 4 deletions.
14 changes: 14 additions & 0 deletions app/src/main/res/layout/dialog_app_info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,20 @@
android:linksClickable="true"
android:text="@string/settings_info_link" />

<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="@dimen/infopopup_text_padding"
android:text="@string/app_info_icons" />

<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="@dimen/infopopup_text_padding"
android:autoLink="web"
android:linksClickable="true"
android:text="@string/app_info_icons_links" />

<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
Expand Down
6 changes: 3 additions & 3 deletions app/src/main/res/layout/item_image.xml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
<?xml version="1.0" encoding="utf-8"?>
<androidx.cardview.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_height="wrap_content"
android:layout_margin="@dimen/imageitem_layout_margin"
style="@style/CardViewStyle">

<ImageView
android:id="@+id/item_image_preview"
android:layout_width="wrap_content"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:contentDescription="@string/image_preview"
android:scaleType="fitXY" />
android:scaleType="fitCenter" />

<ImageButton
android:id="@+id/item_image_save"
Expand Down
3 changes: 3 additions & 0 deletions app/src/main/res/values-de-rDE/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -221,4 +221,7 @@
<string name="settings_color_fav">Favorit</string>
<string name="settings_enable_like">\"Like\" anstatt \"Favorit\" verwenden</string>
<string name="info_restart_app_on_change">Neustart erforderlich um Änderungen anzuwenden</string>
<string name="info_tweet_liked">Tweet zu den Likes hinzugefügt</string>
<string name="info_tweet_unliked">Tweet aus den Likes entfernt</string>
<string name="app_info_icons">svg Icons von:</string>
</resources>
2 changes: 2 additions & 0 deletions app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -248,5 +248,7 @@
<string name="dialog_link_image_preview">Link preview image</string>
<string name="dialog_link_close">close link preview</string>
<string name="info_restart_app_on_change">restarting required to apply changes</string>
<string name="app_info_icons">svg icons from:</string>
<string name="app_info_icons_links" translatable="false">www.svgrepo.com www.entypo.com</string>

</resources>
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ buildscript {
}

dependencies {
classpath 'com.android.tools.build:gradle:7.0.3'
classpath 'com.android.tools.build:gradle:7.0.4'
classpath 'io.michaelrocks:paranoid-gradle-plugin:0.3.5'
classpath 'gradle.plugin.ru.cleverpumpkin.proguard-dictionaries-generator:plugin:1.0.8'
}
Expand Down

0 comments on commit 6314760

Please sign in to comment.