Adjusting proportions of issue labels.

This commit is contained in:
anonTree1417 2020-03-31 04:04:11 +02:00
parent 6e0880e6d8
commit 6b2be06eda
1 changed files with 4 additions and 4 deletions

View File

@ -427,7 +427,7 @@ public class IssueDetailActivity extends BaseActivity {
if(singleIssue.getLabels() != null) {
labelsScrollView.setVisibility(View.VISIBLE);
int width = 33;
int width = 25;
for (int i = 0; i < singleIssue.getLabels().size(); i++) {
String labelColor = singleIssue.getLabels().get(i).getColor();
@ -443,11 +443,11 @@ public class IssueDetailActivity extends BaseActivity {
.beginConfig()
.useFont(Typeface.DEFAULT)
.textColor(new ColorInverter().getContrastColor(color))
.fontSize(36)
.fontSize(30)
.width((width * labelName.length()) - ((width / 4) * labelName.length()))
.height(60)
.height(50)
.endConfig()
.buildRoundRect(labelName, color, 8);
.buildRoundRect(labelName, color, 10);
labelsView.setImageDrawable(drawable);
labelsLayout.addView(labelsView);