我正在尝试使用RecyclerView在Android中重新创建iOS列表的编辑行为。这是我想要的结果(没有删除按钮):
我不需要在此上下文中使用编辑按钮,我假设左侧的小红圈始终存在。单击红色圆形按钮时,矩形删除按钮应从右侧滑动,将行向左推。
我尝试做的是拥有一个容纳两个孩子的水平LinearLayout
。一个是ConstraintLayout
,其具有每行的主要布局,其宽度设置为match_parent
,以便占用所有屏幕宽度。另一个孩子是宽度为130dp
的删除按钮,默认情况下会在屏幕外。
以下是布局文件的代码:
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:clipChildren="false">
<LinearLayout
android:id="@+id/root_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:clipChildren="false">
<android.support.constraint.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginBottom="9dp"
android:layout_marginTop="9dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintTop_toTopOf="parent">
<ImageButton
android:id="@+id/remove_circle_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="16dp"
android:visibility="visible"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:srcCompat="@drawable/ic_remove_circle"
android:background="@null"/>
<TextView
android:id="@+id/textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="16dp"
android:textSize="20sp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toEndOf="@+id/remove_circle_button"
app:layout_constraintTop_toTopOf="parent"
tools:text="some text" />
</android.support.constraint.ConstraintLayout>
<Button
android:id="@+id/remove_main_button"
style="?android:borderlessButtonStyle"
android:layout_width="130dp"
android:layout_height="match_parent"
android:background="@color/red"
android:stateListAnimator="@null"
android:text="Delete"
android:textColor="@color/white" />
</LinearLayout>
</FrameLayout>
我的逻辑是,当用户点击圆形红色按钮时,线性布局会将130dp
设置为向左动画,使红色按钮可见,而其余部分则向左推。在视觉上它看起来足够满足我们的要求。
这是我写的RecyclerView适配器的代码:
public class RecyclerViewAdapter extends RecyclerView.Adapter<RecyclerViewAdapter.ViewHolder> {
private Context mContext;
private List<String> mStrings;
private SparseBooleanArray mHasDeleteButtonPressed;
public RecyclerViewAdapter(Context context, List<String> strings) {
this.mContext = context;
this.mStrings = strings;
}
@NonNull
@Override
public ViewHolder onCreateViewHolder(@NonNull ViewGroup parent, int viewType) {
View row = LayoutInflater.from(mContext).inflate(R.layout.rv_item, parent, false);
return new ViewHolder(row);
}
@Override
public void onBindViewHolder(@NonNull final ViewHolder holder, int position) {
String value = mStrings.get(position);
holder.textView.setText(value);
holder.smallDeleteButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
holder.rootLayout.animate().translationX(
-1 * holder.mainDeleteButton.getWidth())
.setDuration(300)
.start();
mHasDeleteButtonPressed.put(holder.getAdapterPosition(), false);
}
});
holder.mainDeleteButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Toast.makeText(mContext, "clicked", Toast.LENGTH_LONG).show();
}
});
}
@Override
public int getItemCount() {
return mStrings.size();
}
static class ViewHolder extends RecyclerView.ViewHolder {
LinearLayout rootLayout;
TextView textView;
ImageButton smallDeleteButton;
Button mainDeleteButton;
ViewHolder(View itemView) {
super(itemView);
rootLayout = (LinearLayout) itemView.findViewById(R.id.root_layout);
textView = (TextView) itemView.findViewById(R.id.time_textView);
smallDeleteButton = (ImageButton) itemView.findViewById(R.id.remove_circle_button);
mainDeleteButton = (Button) itemView.findViewById(R.id.remove_main_button);
}
}
}
布尔数组是要知道每行的哪个按钮被点击,以便在用户决定不删除该行时我们可以为删除按钮设置动画。
理论上,使用此代码时,应按下删除按钮,并显示一个表示按钮被单击的Toast。但是,似乎根本没有设置OnClickListener
,并且没有调用onClick
方法中的代码。我怀疑是因为按钮首先位于屏幕之外,我们正在强制视图不要剪辑它(使用xml文件中的android:clipChildren="false"
),setOnClickListener
方法无效。因为当我以一种删除按钮位于屏幕内部的方式重新排列布局时,上面的适配器代码将无需任何更改即可工作。
那么如何解决我的问题呢?我不想使用任何外部库,我想在RecyclerView中执行此操作。
提前致谢
答案 0 :(得分:0)
这是一个有趣的问题。我无法说出真正发生的事情,但是你滑动到屏幕上的按钮是在屏幕边界之外被定义的,虽然看起来并没有真正进入屏幕。它的命中矩形在屏幕上定义,因此按钮永远不会被点击。
我的解决方案是首先简化RecyclerView
项目的布局,如下所示:
<强> activity_main.xml中强>
为了我自己的易用性,我更改了一些诸如按钮颜色等的东西,但它们与解决方案无关。
<android.support.constraint.ConstraintLayout
android:id="@+id/root_layout"
android:layout_width="match_parent"
android:layout_height="70dp"
android:layout_marginBottom="9dp"
android:layout_marginTop="9dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintTop_toTopOf="parent">
<ImageButton
android:id="@+id/remove_circle_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="16dp"
android:background="@null"
android:visibility="visible"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:srcCompat="@drawable/circle_button" />
<TextView
android:id="@+id/textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="16dp"
android:text="some text"
android:textColor="@color/colorPrimary"
android:textSize="20sp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toEndOf="@+id/remove_circle_button"
app:layout_constraintTop_toTopOf="parent" />
<Button
android:id="@+id/remove_main_button"
style="?android:borderlessButtonStyle"
android:layout_width="130dp"
android:layout_height="0dp"
android:background="@android:color/holo_blue_light"
android:stateListAnimator="@null"
android:text="Delete"
android:textColor="@android:color/white"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</android.support.constraint.ConstraintLayout>
此布局将在屏幕上显示按钮。在活动中,布局将被赋予指定的宽度,即屏幕的宽度加上按钮的宽度。这种布局的重新定尺寸将使按钮移出屏幕。然后代码可以进行翻译以将其移回屏幕。
<强> MainActivity.java 强>
public class MainActivity extends AppCompatActivity {
private View rootLayout;
private View mainDeleteButton;
private View circleButton;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
rootLayout = findViewById(R.id.root_layout);
mainDeleteButton = findViewById(R.id.remove_main_button);
circleButton = findViewById(R.id.remove_circle_button);
rootLayout.post(new Runnable() {
@Override
public void run() {
rootLayout.getLayoutParams().width = rootLayout.getWidth() + mainDeleteButton.getWidth();
rootLayout.requestLayout();
}
});
circleButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
rootLayout.animate().translationX(
-1 * mainDeleteButton.getWidth())
.setDuration(300)
.start();
}
});
mainDeleteButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Toast.makeText(MainActivity.this, "clicked", Toast.LENGTH_SHORT).show();
}
});
}
}
效果如下:
虽然此示例不涉及RecyclerView
,但该技术可应用于RecyclerView
。