version 1.8.9 layout fix

This commit is contained in:
nuclearfog 2021-01-16 21:37:56 +01:00
parent 09f60e0cef
commit 66efd29b0a
No known key found for this signature in database
GPG Key ID: D5490E4A81F97B14
5 changed files with 10 additions and 10 deletions

View File

@ -9,8 +9,8 @@ android {
applicationId 'org.nuclearfog.twidda'
minSdkVersion 16
targetSdkVersion 30
versionCode 32
versionName '1.8.8'
versionCode 33
versionName '1.8.9'
// limiting language support for smaller APK size
resConfigs 'en', 'de-rDE'
vectorDrawables.useSupportLibrary true

View File

@ -222,6 +222,7 @@ public class TweetAdapter extends Adapter<ViewHolder> {
if (viewType == VIEW_TWEET) {
View v = LayoutInflater.from(parent.getContext()).inflate(R.layout.item_tweet, parent, false);
final TweetHolder vh = new TweetHolder(v);
vh.retweeterName.setCompoundDrawablesWithIntrinsicBounds(R.drawable.retweet, 0, 0, 0);
AppStyles.setTheme(settings, v);
v.setOnClickListener(new OnClickListener() {
@Override

View File

@ -1,6 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<androidx.cardview.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
style="@style/CardViewStyle"
android:layout_width="match_parent"
android:layout_height="wrap_content">
@ -98,8 +97,7 @@
android:layout_weight="1"
android:drawablePadding="@dimen/tweetitem_padding_drawable"
android:singleLine="true"
android:textSize="@dimen/tweetitem_textsize_button"
app:drawableStartCompat="@drawable/retweet" />
android:textSize="@dimen/tweetitem_textsize_button" />
<TextView
android:id="@+id/retweet_number"

View File

@ -93,7 +93,7 @@
android:layout_height="@dimen/tweet_button_answer_height"
android:paddingLeft="@dimen/tweet_button_padding"
android:paddingRight="@dimen/tweet_button_padding"
android:textSize="@dimen/tweet_textsize_api"
android:textSize="@dimen/tweet_textsize_small"
android:visibility="gone"
style="@style/FeedbackButton" />
@ -131,6 +131,7 @@
android:layout_height="wrap_content"
android:layout_weight="1"
android:drawablePadding="@dimen/tweet_padding_drawable"
android:textSize="@dimen/tweet_textsize_small"
android:visibility="gone" />
<TextView
@ -143,7 +144,7 @@
android:paddingRight="@dimen/tweet_button_padding"
android:singleLine="true"
android:text="@string/tweet_sensitive_media"
android:textSize="@dimen/tweet_textsize_api"
android:textSize="@dimen/tweet_textsize_small"
android:visibility="gone" />
</LinearLayout>
@ -181,7 +182,7 @@
android:layout_height="wrap_content"
android:linksClickable="false"
android:singleLine="true"
android:textSize="@dimen/tweet_textsize_api" />
android:textSize="@dimen/tweet_textsize_small" />
</LinearLayout>

View File

@ -24,7 +24,7 @@
<!--dimens of page_tweet.xml-->
<dimen name="tweet_toolbar_height">@dimen/toolbar_height</dimen>
<dimen name="tweet_profile">56sp</dimen>
<dimen name="tweet_textsize_api">12sp</dimen>
<dimen name="tweet_textsize_small">12sp</dimen>
<dimen name="tweet_media_button_margin">5dp</dimen>
<dimen name="tweet_button_location">16dp</dimen>
<dimen name="tweet_layout_margin">5dp</dimen>