- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我已经按照本教程(“https://www.youtube.com/watch?v=Yt15bySZTf0”)生成了移动存储和 SD 卡中可用的视频列表,但是当我运行应用程序时,加载到第一个 Activity 需要大约 30 秒,即所有可用视频的列表,以及当回收器 View 可用并且我开始滚动时,滚动安静滞后,请帮助我解决这个问题,以下是我的应用程序的代码
video_list_items.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content" > <!--if you add match parent it will cause large spaces between files while scrolling-->
<android.support.v7.widget.CardView
android:id="@+id/videoCardView"
android:layout_width="match_parent"
android:layout_height="150dp"
app:cardElevation="3dp"
android:layout_gravity="center"
android:layout_margin="4dp"
app:cardUseCompatPadding="true">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:weightSum="5">
<ImageView
android:id="@+id/VideoImageView"
android:layout_width="wrap_content"
android:layout_height="0dp"
android:layout_weight="4"
android:scaleType="centerCrop"
android:layout_gravity="center"/>
<TextView
android:id="@+id/VideoTextView"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:layout_margin="5dp"
android:maxLines="1"
android:text="File Name"/>
</LinearLayout>
</android.support.v7.widget.CardView>
</LinearLayout>
VideoAdapter.java
import android.content.Context;
import android.graphics.Bitmap;
import android.media.ThumbnailUtils;
import android.provider.MediaStore;
import android.support.annotation.NonNull;
import android.support.v7.widget.CardView;
import android.support.v7.widget.RecyclerView;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ImageView;
import android.widget.TextView;
import com.example.hdvideoandaudioplayer.MainActivity;
import com.example.hdvideoandaudioplayer.R;
import java.io.File;
import java.util.ArrayList;
public class VideoAdapter extends RecyclerView.Adapter<VideoViewHolder> {
private Context context;
ArrayList<File> videoArrayList;
public VideoAdapter(Context context, ArrayList<File> videoArrayList) {
this.context = context;
this.videoArrayList = videoArrayList;
}
@Override
public VideoViewHolder onCreateViewHolder(ViewGroup viewGroup, int i) {
View vView = LayoutInflater.from(viewGroup.getContext()).inflate(R.layout.video_list_items, viewGroup, false);
return new VideoViewHolder(vView);
}
@Override
public void onBindViewHolder(@NonNull VideoViewHolder videoViewHolder, int i) {
videoViewHolder.vTextView.setText(MainActivity.fileArrayList.get(i).getName());
Bitmap bitmapThumbnail = ThumbnailUtils.createVideoThumbnail(videoArrayList.get(i).getPath(), MediaStore.Video.Thumbnails.MINI_KIND);
videoViewHolder.vImageView.setImageBitmap(bitmapThumbnail);
}
@Override
public int getItemCount() {
if(videoArrayList.size()>0){
return videoArrayList.size();
}
else {
return 1;
}
}
}
class VideoViewHolder extends RecyclerView.ViewHolder {
TextView vTextView;
ImageView vImageView;
CardView vCardView;
public VideoViewHolder(@NonNull View itemView) {
super(itemView);
vTextView = itemView.findViewById(R.id.VideoTextView);
vImageView = itemView.findViewById(R.id.VideoImageView);
vCardView = itemView.findViewById(R.id.videoCardView);
}
}
activity_main.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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="match_parent"
tools:context=".MainActivity">
<android.support.v7.widget.RecyclerView
android:id="@+id/videoListRecyclerView"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
</android.support.v7.widget.RecyclerView>
</LinearLayout>
MainActivity.java
package com.example.hdvideoandaudioplayer;
import android.Manifest;
import android.content.pm.PackageManager;
import android.support.annotation.NonNull;
import android.support.v4.app.ActivityCompat;
import android.support.v4.content.ContextCompat;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.support.v7.widget.GridLayoutManager;
import android.support.v7.widget.RecyclerView;
import android.view.View;
import android.widget.Toast;
import com.example.hdvideoandaudioplayer.Adapter.VideoAdapter;
import java.io.File;
import java.util.ArrayList;
public class MainActivity extends AppCompatActivity {
RecyclerView mRecyclerView;
VideoAdapter obj_VideoAdapter;
public static int REQUEST_PERMISSION = 1;
File directory;
boolean BOOLEAN_PERMISSION;
public static ArrayList<File> fileArrayList = new ArrayList<>();
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
mRecyclerView = findViewById(R.id.videoListRecyclerView);
directory = new File("/mnt/");
GridLayoutManager gridLayoutManager = new GridLayoutManager(MainActivity.this, 2);
mRecyclerView.setHasFixedSize(true);
mRecyclerView.setItemViewCacheSize(20);
mRecyclerView.setLayoutManager(gridLayoutManager);
permissionForVideo();
}
private void permissionForVideo() {
if((ContextCompat.checkSelfPermission(getApplicationContext(), Manifest.permission.READ_EXTERNAL_STORAGE) != PackageManager.PERMISSION_GRANTED)){
if((ActivityCompat.shouldShowRequestPermissionRationale(MainActivity.this, Manifest.permission.READ_EXTERNAL_STORAGE))){
}
else {
ActivityCompat.requestPermissions(MainActivity.this, new String[]{Manifest.permission.READ_EXTERNAL_STORAGE}, REQUEST_PERMISSION);
}
} else{
BOOLEAN_PERMISSION = true;
getFile(directory);
obj_VideoAdapter = new VideoAdapter(getApplicationContext(), fileArrayList);
obj_VideoAdapter.setHasStableIds(true);
mRecyclerView.setAdapter(obj_VideoAdapter);
}
}
@Override
public void onRequestPermissionsResult(int requestCode, @NonNull String[] permissions, @NonNull int[] grantResults) {
super.onRequestPermissionsResult(requestCode, permissions, grantResults);
if(requestCode == REQUEST_PERMISSION){
if(grantResults.length > 0 && grantResults[0] == PackageManager.PERMISSION_GRANTED){
BOOLEAN_PERMISSION = true;
getFile(directory);
obj_VideoAdapter = new VideoAdapter(getApplicationContext(), fileArrayList);
mRecyclerView.setAdapter(obj_VideoAdapter);
} else{
Toast.makeText(this, "Please grant Permission", Toast.LENGTH_SHORT).show();
}
}
}
public ArrayList<File> getFile(File directory) {
File[] listFile = directory.listFiles();
if(listFile!=null && listFile.length>0){
for (File file : listFile) {
if (file.isDirectory()) {
getFile(file);
} else {
BOOLEAN_PERMISSION = false;
if (file.getName().endsWith(".mp4") || file.getName().endsWith(".m4a") || file.getName().endsWith(".m4v") || file.getName().endsWith(".f4a") || file.getName().endsWith(".f4v") || file.getName().endsWith(".mp4") || file.getName().endsWith(".m4b") || file.getName().endsWith(".m4r") || file.getName().endsWith(".mp4") || file.getName().endsWith(".f4b") || file.getName().endsWith(".mov") || file.getName().endsWith(".3gp") || file.getName().endsWith(".3gp2") || file.getName().endsWith(".3g2") || file.getName().endsWith(".3gpp") || file.getName().endsWith(".3gpp2") || file.getName().endsWith(".3gp") || file.getName().endsWith(".ogg") || file.getName().endsWith(".oga") || file.getName().endsWith(".ogv") || file.getName().endsWith(".ogx") || file.getName().endsWith(".wmv") || file.getName().endsWith(".wma") || file.getName().endsWith(".asf*") || file.getName().endsWith(".webm") || file.getName().endsWith(".flv") || file.getName().endsWith(".avi") || file.getName().endsWith(".mkv") || file.getName().endsWith(".flv") || file.getName().endsWith(".vob") || file.getName().endsWith(".drc") || file.getName().endsWith(".gif") || file.getName().endsWith(".gifv") || file.getName().endsWith(".mng") || file.getName().endsWith(".MTS") || file.getName().endsWith(".MT2S") || file.getName().endsWith(".TS") || file.getName().endsWith(".mov") || file.getName().endsWith(".qt") || file.getName().endsWith(".wmv") || file.getName().endsWith(".yuv") || file.getName().endsWith(".rm") || file.getName().endsWith(".mvb") || file.getName().endsWith(".amv") || file.getName().endsWith(".mpg") || file.getName().endsWith(".mp2") || file.getName().endsWith(".mpeg") || file.getName().endsWith(".mpe") || file.getName().endsWith(".mpv") || file.getName().endsWith(".xvi") || file.getName().endsWith(".mxf") || file.getName().endsWith(".roq") || file.getName().endsWith(".nsv") || file.getName().endsWith(".3gp")) {
for (int j = 0; j < fileArrayList.size(); j++) {
if (fileArrayList.get(j).getName().equals(file.getName())) {
BOOLEAN_PERMISSION = true;
}
}
if (BOOLEAN_PERMISSION) {
BOOLEAN_PERMISSION = false;
} else {
fileArrayList.add(file);
}
}
}
}
}
return fileArrayList;
}
}
最佳答案
滑动依赖
implementation 'com.github.bumptech.glide:glide:3.8.0'
然后你可以使用下面的代码
Glide.with(this).load(videoArrayList.get(i).
thumbnail(0.2f).into(videoViewHolder.vImageView)
0.2f是sizeMultiplier,您可以根据您的要求调整它。
关于java - 回收器 View 需要 30 秒才能加载,并且滚动时也会滞后,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58362633/
如果附加了 'not-scroll' 类,我希望我的 body 不滚动,否则它应该正常工作。 我已经搜索这个问题两天了,但找不到任何适合我的解决方案。 我想要的是向 body 添加一个 class,并
我发现似乎是 iOS Safari 中的错误(我正在 iOS 8 上进行测试)。当绝对定位的 iFrame 漂浮在一段可滚动内容上方时,滚动 iFrame 也会滚动下面的内容。以下 HTML (ava
我有以下代码来显示一系列投资组合图片,这些图片以 SVG 格式存储在滚动 div 中: 在 Safari 中滚动使用两根手指或鼠标滚轮当光标位于 SVG 之一上时不起作用。 该页
我想用 javascript 做的是: 一旦你向下滚动页面,将#sidebar-box-fixed 的位置从 position: relative; 更改为定位:固定;。改回position:rela
我对 Elasticsearch 的滚动功能有点困惑。在 elasticsearch 中,每当用户在结果集上滚动时,是否可以每次调用搜索 API?来自文档 "search_type" => "scan
我试图做到这一点,以便当我向上或向下滚动页面时,它会运行不同的相应功能。我发现了一个类似的问题here但我已经尝试了他们的答案并且没有运气。 注意:此页面没有正常显示的滚动条。没有地方可以滚动。 bo
(C语言,GTK库) 在我的表单上,我有一个 GtkDrawingArea 小部件,我在上面使用 Cairo 绘制 GdkPixbufs(从文件加载)。我想要完成的是能够在窗口大小保持固定的情况下使用
最近我一直在尝试创建一个拉到(刷新,加载更多)swiftUI ScrollView !!,灵感来自 https://cocoapods.org/pods/SwiftPullToRefresh 我正在努
我正在开发一个应用程序,其中有两个带有可放置区域的列表和一个带有可拖动项目的侧面菜单。 当我滚动屏幕时,项目的位置困惑。 我试图在谷歌上寻找一些东西,最后得到了这个问题:jQuery draggabl
我在 UIWebView 中加载了一个 HTML 表单,而我的 UIWebView 恰好从 View 的中间开始并扩展。我必须锁定此 webView 不滚动并将其放在 ScrollView 之上以允许
如何在每个元素而不是整个元素上应用淡入淡出(与其高度相比)? HTML: CSS: * { padding: 0; margin: 0; box-sizing: border
我想使用带有垂直轴的 PageView 并使用鼠标滚动在页面之间移动,但是当我使用鼠标滚动时页面不滚动...仅页面单击并向上/向下滑动时滚动。 有什么办法吗? 我想保留属性 pageSnapping:
我制作这个程序是为了好玩,但我被卡住了,因为程序在屏幕外运行。如何在不完全更改代码的情况下实现滚动条。 public static void main(String args[]) throws IO
我想使用带有垂直轴的 PageView 并使用鼠标滚动在页面之间移动,但是当我使用鼠标滚动时页面不滚动...仅页面单击并向上/向下滑动时滚动。 有什么办法吗? 我想保留属性 pageSnapping:
很难说出这里问的是什么。这个问题是含糊的、模糊的、不完整的、过于宽泛的或修辞性的,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开它,visit the help center 。 已关
使用 jquery 技术从 css-tricks.com 获得滚动/跟随侧边栏,如果您不知道我在说什么,这里是代码: $(function() { var $sidebar = $
我是 jQuery Mobile 新手。我需要向我的应用程序添加 Facebook 滑动面板功能。 我经历了 sliding menu panel ,它工作正常,但我在菜单面板中的内容超出了窗口大小,
有没有办法在 js 或 jQuery 或任何其他工具中检测 ctrl + 滚动。我正在尝试执行一些动态布局代码,我需要检测不同分辨率下的屏幕宽度,我通过使用 setTimeout() 的计时器实现了这
我有一部分html代码:
我想控制 RichTextBox 滚动,但在控件中找不到任何方法来执行此操作。 这样做的原因是我希望当鼠标光标位于 RichTextBox 控件上时鼠标滚轮滚动有效(它没有事件焦点:鼠标滚轮事件由表单
我是一名优秀的程序员,十分优秀!