change extra text size

This commit is contained in:
sk
2023-10-18 19:39:12 +02:00
parent b8dccbbef1
commit 53f0e2a933
2 changed files with 3 additions and 4 deletions

View File

@@ -39,7 +39,7 @@ public class HeaderSubtitleLinearLayout extends LinearLayout{
}
View first=getChildAt(0);
if(first instanceof TextView){
((TextView) first).setMaxWidth(Math.max(remainingWidth, fullWidth/2));
((TextView) first).setMaxWidth(Math.max(remainingWidth, fullWidth/3*2));
}
}else{
View first=getChildAt(0);