diff --git a/app/src/main/java/io/lbry/browser/MainActivity.java b/app/src/main/java/io/lbry/browser/MainActivity.java
index 0a33dc3..fcbae3d 100644
--- a/app/src/main/java/io/lbry/browser/MainActivity.java
+++ b/app/src/main/java/io/lbry/browser/MainActivity.java
@@ -837,10 +837,11 @@ public class MainActivity extends AppCompatActivity implements SdkStatusListener
listener.onEnterPIPMode();
}
+ View pipPlayerContainer = findViewById(R.id.pip_player_container);
PlayerView pipPlayer = findViewById(R.id.pip_player);
- pipPlayer.setVisibility(View.VISIBLE);
pipPlayer.setPlayer(appPlayer);
pipPlayer.setUseController(false);
+ pipPlayerContainer.setVisibility(View.VISIBLE);
playerReassigned = true;
}
private void renderFullMode() {
@@ -871,9 +872,10 @@ public class MainActivity extends AppCompatActivity implements SdkStatusListener
listener.onExitPIPMode();
}
+ View pipPlayerContainer = findViewById(R.id.pip_player_container);
PlayerView pipPlayer = findViewById(R.id.pip_player);
- pipPlayer.setVisibility(View.INVISIBLE);
pipPlayer.setPlayer(null);
+ pipPlayerContainer.setVisibility(View.INVISIBLE);
playerReassigned = true;
}
diff --git a/app/src/main/res/layout/container_comment_form.xml b/app/src/main/res/layout/container_comment_form.xml
index 1948ef6..4634c47 100644
--- a/app/src/main/res/layout/container_comment_form.xml
+++ b/app/src/main/res/layout/container_comment_form.xml
@@ -18,7 +18,7 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
- android:text="@string/post_as"
+ android:text="@string/comment_as"
android:fontFamily="@font/inter"
android:textSize="14sp"
android:textFontWeight="300" />
diff --git a/app/src/main/res/layout/content_main.xml b/app/src/main/res/layout/content_main.xml
index 2e82383..9fd48cf 100644
--- a/app/src/main/res/layout/content_main.xml
+++ b/app/src/main/res/layout/content_main.xml
@@ -128,12 +128,18 @@
-
+ app:layout_constraintTop_toTopOf="parent">
+
+
\ No newline at end of file
diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml
index 5805f84..f537bc5 100644
--- a/app/src/main/res/values/strings.xml
+++ b/app/src/main/res/values/strings.xml
@@ -82,7 +82,7 @@
The content was successfully deleted from the blockchain.
The content could not be deleted at this time. Please try again later.
Comment
- Post as
+ Comment as
Please enter a comment to post.
Please select a channel to post your comment as.
Post comment with tip?