mirror of
https://github.com/TeamNewPipe/NewPipe
synced 2024-12-02 03:11:23 +01:00
Fixed 4. buggy behavior when adding a new tab.
This commit is contained in:
parent
fc94f184d2
commit
b730cb099f
@ -184,9 +184,6 @@ public class ContentSettingsMain extends Fragment {
|
||||
class TabViewHolder extends RecyclerView.ViewHolder {
|
||||
|
||||
TextView text;
|
||||
Button remove;
|
||||
Button up;
|
||||
Button down;
|
||||
|
||||
public TabViewHolder(View itemView) {
|
||||
super(itemView);
|
||||
|
@ -101,26 +101,17 @@ public class ContentSettingsMainDialog extends DialogFragment {
|
||||
class TabViewHolder extends RecyclerView.ViewHolder {
|
||||
|
||||
TextView text;
|
||||
Button add;
|
||||
Button up;
|
||||
Button down;
|
||||
View view;
|
||||
|
||||
public TabViewHolder(View itemView) {
|
||||
super(itemView);
|
||||
|
||||
text = itemView.findViewById(R.id.tabName);
|
||||
add = itemView.findViewById(R.id.buttonAddRemove);
|
||||
up = itemView.findViewById(R.id.buttonUp);
|
||||
down = itemView.findViewById(R.id.buttonDown);
|
||||
view = itemView;
|
||||
view = itemView.findViewById(R.id.layout);
|
||||
}
|
||||
|
||||
void bind(int position) {
|
||||
up.setBackgroundResource(0);
|
||||
down.setBackgroundResource(0);
|
||||
text.setText(allTabs[position]);
|
||||
add.setBackgroundResource(0);
|
||||
view.setOnClickListener(v -> {
|
||||
addTab(position);
|
||||
});
|
||||
|
@ -1,51 +1,21 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:id="@+id/layout"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tabName"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_alignParentLeft="true"
|
||||
android:layout_alignParentStart="true"
|
||||
android:layout_alignParentEnd="true"
|
||||
android:layout_centerVertical="true"
|
||||
android:layout_marginStart="0dp"
|
||||
android:layout_toLeftOf="@id/buttonDown"
|
||||
android:layout_toStartOf="@id/buttonDown"
|
||||
android:paddingLeft="3dp"
|
||||
android:paddingStart="3dp"
|
||||
android:textAppearance="?android:attr/textAppearanceListItem"
|
||||
android:textSize="24sp"
|
||||
android:paddingLeft="3dp" />
|
||||
|
||||
<Button
|
||||
android:id="@+id/buttonAddRemove"
|
||||
android:layout_width="40dp"
|
||||
android:layout_height="40dp"
|
||||
android:layout_alignParentEnd="true"
|
||||
android:layout_alignParentRight="true"
|
||||
android:layout_centerVertical="true"
|
||||
android:layout_marginEnd="0dp"
|
||||
android:layout_marginRight="0dp"
|
||||
android:background="@color/transparent_background_color" />
|
||||
|
||||
<Button
|
||||
android:id="@+id/buttonDown"
|
||||
android:layout_width="30dp"
|
||||
android:layout_height="30dp"
|
||||
android:layout_centerVertical="true"
|
||||
android:layout_toLeftOf="@+id/buttonUp"
|
||||
android:layout_toStartOf="@+id/buttonUp"
|
||||
android:background="@color/transparent_background_color" />
|
||||
|
||||
<Button
|
||||
android:id="@+id/buttonUp"
|
||||
android:layout_width="30dp"
|
||||
android:layout_height="30dp"
|
||||
android:layout_centerVertical="true"
|
||||
android:layout_toLeftOf="@+id/buttonAddRemove"
|
||||
android:layout_toStartOf="@+id/buttonAddRemove"
|
||||
android:background="@color/transparent_background_color" />
|
||||
android:textSize="24sp" />
|
||||
|
||||
</RelativeLayout>
|
Loading…
Reference in New Issue
Block a user