- Fixed mVersionText being outside of the screen when the version name was too long

This commit is contained in:
SerpentSpirale 2021-01-09 15:25:36 +01:00
parent 401cad7430
commit 78fd3329c9
2 changed files with 12 additions and 3 deletions

View file

@ -88,6 +88,9 @@ public class PojavLauncherActivity extends BaseLauncherActivity
tvUsernameView = (TextView) findViewById(R.id.launchermain_text_welcome);
mTextVersion = (TextView) findViewById(R.id.launcherMainVersionView);
//The following line is used to make this TextView horizontally scroll if the version name is larger than the view
mTextVersion.setSelected(true);
Tabs[0] = findViewById(R.id.btnTab1);
Tabs[1] = findViewById(R.id.btnTab2);
Tabs[2] = findViewById(R.id.btnTab3);

View file

@ -273,13 +273,19 @@
<TextView
android:id="@+id/launcherMainVersionView"
android:layout_width="wrap_content"
android:layout_width="0dp"
android:layout_height="20dp"
android:gravity="center"
android:text="@string/global_waiting"
android:textSize="12sp"
app:layout_constraintEnd_toEndOf="@+id/launchermain_text_welcome"
app:layout_constraintStart_toStartOf="@+id/launchermain_text_welcome"
android:singleLine="true"
android:scrollHorizontally="true"
android:ellipsize="marquee"
android:marqueeRepeatLimit="marquee_forever"
android:focusable="true"
android:focusableInTouchMode="true"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toEndOf="@+id/launchermainPlayButton"
app:layout_constraintTop_toBottomOf="@+id/launchermain_text_welcome" />
<Button