properly highlight the items that are going to be deleted

This commit is contained in:
tibbi 2016-07-15 23:07:21 +02:00
parent 7b47da40c3
commit 7427f266a7
4 changed files with 27 additions and 7 deletions

View File

@ -33,7 +33,7 @@ public class MediaAdapter extends BaseAdapter {
final Medium medium = mMedia.get(position);
ViewHolder viewHolder;
if (convertView == null) {
convertView = mInflater.inflate(R.layout.video_item, parent, false);
convertView = mInflater.inflate(R.layout.photo_video_item, parent, false);
viewHolder = new ViewHolder(convertView);
convertView.setTag(viewHolder);
} else {

View File

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<com.simplemobiletools.gallery.MyImageView
android:id="@+id/medium_thumbnail"
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:foreground="@drawable/selector"/>

View File

@ -3,13 +3,9 @@
android:id="@+id/media_item_holder"
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:foreground="@drawable/selector">
android:layout_height="match_parent">
<com.simplemobiletools.gallery.MyImageView
android:id="@+id/medium_thumbnail"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
<include layout="@layout/photo_video_tmb"/>
<ImageView
android:id="@+id/play_outline"

View File

@ -0,0 +1,17 @@
<?xml version="1.0" encoding="utf-8"?>
<merge>
<FrameLayout
android:id="@+id/medium_thumbnail_holder"
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:foreground="@drawable/selector">
<com.simplemobiletools.gallery.MyImageView
android:id="@+id/medium_thumbnail"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
</FrameLayout>
</merge>