英文:
Make Recycleview item when clicked more interactive
问题
我在Gmail中有一个问题,当点击其中一封电子邮件时,会显示这个动画。
如何将这个动画添加到我的RecyclerView,并使我的应用程序更具交互性?
英文:
i have a question in gmail when one of the email is clicked it shows this animation
How can i add this to my recyclerview and make my app more interactive ??
答案1
得分: 1
你必须为每一行都有一个布局,你可以将以下内容添加到父布局中:
android:clickable="true"
android:focusable="true"
android:background="?android:attr/selectableItemBackground"
例如:
Application_row.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
android:id="@+id/applicationLayout"
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:padding="10dp"
android:gravity="center_vertical"
android:clickable="true"
android:focusable="true"
android:background="?android:attr/selectableItemBackground">
<ImageView
android:id="@+id/applicationIcon"
android:layout_width="50dp"
android:layout_height="50dp"/>
<TextView
android:id="@+id/applicationName"
android:layout_width="wrap_content"
android:layout_margin="15dp"
android:layout_height="wrap_content"
android:text="应用名称"
android:textSize="20sp"/>
</LinearLayout>
这将使得用户触摸行时会有一个动画效果。
英文:
You must have a layout you use fo each row, in this file, you can add to the parent layout
android:clickable="true"
android:focusable="true"
android:background="?android:attr/selectableItemBackground"
For example:
Application_row.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
android:id="@+id/applicationLayout"
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:padding="10dp"
android:gravity="center_vertical"
android:clickable="true"
android:focusable="true"
android:background="?android:attr/selectableItemBackground">
<ImageView
android:id="@+id/applicationIcon"
android:layout_width="50dp"
android:layout_height="50dp"/>
<TextView
android:id="@+id/applicationName"
android:layout_width="wrap_content"
android:layout_margin="15dp"
android:layout_height="wrap_content"
android:text="Application name"
android:textSize="20sp"/>
</LinearLayout>
This will make the row have an animation when the user will touch it.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论