Skip to content

Commit

Permalink
Fix view binding types
Browse files Browse the repository at this point in the history
  • Loading branch information
Stypox committed Jan 14, 2021
1 parent 059bb76 commit 8378789
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 11 deletions.
12 changes: 5 additions & 7 deletions app/src/main/res/layout-large-land/player.xml
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@
tools:text="The Video Artist LONG very LONG very Long" />
</LinearLayout>

<Button
<TextView
android:id="@+id/qualityTextView"
android:layout_width="wrap_content"
android:layout_height="35dp"
Expand All @@ -154,13 +154,12 @@
android:gravity="center"
android:minWidth="0dp"
android:padding="@dimen/player_main_buttons_padding"
android:text="720p"
android:textAllCaps="false"
android:textColor="@android:color/white"
android:textStyle="bold"
tools:ignore="HardcodedText,RtlHardcoded" />
tools:ignore="HardcodedText,RtlHardcoded"
tools:text="720p" />

<Button
<TextView
android:id="@+id/playbackSpeed"
android:layout_width="wrap_content"
android:layout_height="35dp"
Expand All @@ -169,7 +168,6 @@
android:gravity="center"
android:minWidth="0dp"
android:padding="@dimen/player_main_buttons_padding"
android:textAllCaps="false"
android:textColor="@android:color/white"
android:textStyle="bold"
tools:ignore="RtlHardcoded,RtlSymmetry"
Expand Down Expand Up @@ -216,7 +214,7 @@
tools:ignore="RtlHardcoded"
tools:visibility="visible">

<Button
<TextView
android:id="@+id/resizeTextView"
android:layout_width="wrap_content"
android:layout_height="35dp"
Expand Down
7 changes: 3 additions & 4 deletions app/src/main/res/layout/player.xml
Original file line number Diff line number Diff line change
Expand Up @@ -156,11 +156,10 @@
android:gravity="center"
android:minWidth="0dp"
android:padding="@dimen/player_main_buttons_padding"
android:text="720p"
android:textColor="@android:color/white"
android:textStyle="bold"
android:visibility="visible"
tools:ignore="HardcodedText,RtlHardcoded" />
tools:ignore="HardcodedText,RtlHardcoded"
tools:text="720p" />

<TextView
android:id="@+id/playbackSpeed"
Expand Down Expand Up @@ -350,7 +349,7 @@
tools:text="1:06:29" />


<androidx.appcompat.widget.AppCompatSeekBar
<org.schabi.newpipe.views.FocusAwareSeekBar
android:id="@+id/playbackSeekBar"
style="@style/Widget.AppCompat.SeekBar"
android:layout_width="0dp"
Expand Down

0 comments on commit 8378789

Please sign in to comment.