Android 搜索SD卡文件的开发示例

 更新时间:2016年08月21日 09:58:21   投稿:lqh  
本文主要介绍 Android 搜索SD卡文件的实现,这里详细介绍如何实现流程和示例代码,并附实现效果图,有需要的小伙伴可以参考下

       我们在进行Android开发时往往需要访问SD卡的内容,而且因为文件很多,希望能够在SD卡中进行搜索。本文就给出一个Android开发实例,演示如何搜索SD卡里的文件。

       实例界面

       首先让那个大家看看程序运行后的界面是什么样子的:

       在第一个EditText中设置搜索的目录,默认为根目录"/"。

       第二个EditText为所要搜索的关键字。

       Layout布局 

       下面贴出layout中的布局文件内容,应该说也是比较简单的,难度不大。

XML/HTML代码
<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
  android:layout_width="fill_parent" 
  android:layout_height="fill_parent" 
  android:orientation="vertical" > 
 
  <EditText  
    android:id="@+id/editText2" 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:text="/" 
    /> 
    
  <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:layout_marginTop="20dp" 
    android:orientation="horizontal" > 
      
    <TextView  
      android:text="输入文件名字:" 
      android:textSize="20dp" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      /> 
    <EditText 
      android:id="@+id/editText1" 
      android:textSize="20dp" 
      android:layout_width="fill_parent" 
      android:layout_height="wrap_content" 
      /> 
  </LinearLayout> 
    
  <Button  
    android:id="@+id/button1" 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:text="开始搜索" 
    /> 
    
  <TextView  
    android:id="@+id/textView1" 
    android:layout_marginTop="20dp" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" 
    /> 
      
</LinearLayout> 

        搜索功能的代码实现

        最后就是如何实现搜索的问题。

        我通过java.io.File中定义的File.getName().indexOf(keyword) >= 0 来判断文件是否符合搜索要求。

        具体的实现是通过下面的代码:

File[] files = new File(file.getPath()).listFiles();  
      
    for (File f : files)  
    {  
      if (f.getName().indexOf(keyword) >= 0)  
      {  
        res += f.getPath() + "\n";  
      }  
    } 

       其中,File[] files = new File(file.getPath()).listFiles(); 是用来得到所要求目录下的所有文件,再通过 for (File f  :  files)  历遍所有文件。

       完整的Main.java 代码为:

package net.javablog.mobile;  
 
import android.app.Activity;  
import android.os.Bundle;  
import android.widget.Button;  
import android.widget.TextView;  
import android.widget.EditText;  
import android.view.View;  
import java.io.File;  
 
public class Main extends Activity {  
    
  private TextView textView1;  
  private EditText editText1;  
  private EditText editText2;  
  private Button button1;  
    
  /** Called when the activity is first created. */ 
  @Override 
  public void onCreate(Bundle savedInstanceState) {  
    super.onCreate(savedInstanceState);  
    setContentView(R.layout.main);  
    
    textView1 = (TextView) findViewById (R.id.textView1);  
    editText1 = (EditText) findViewById (R.id.editText1);  
    editText2 = (EditText) findViewById (R.id.editText2);  
    button1 = (Button) findViewById (R.id.button1);  
      
    button1.setOnClickListener(new Button.OnClickListener()  
    {  
      @Override 
      public void onClick (View view)  
      {  
        String keyword = editText1.getText().toString();  
        File root = new File(editText2.getText().toString());  
          
        if (keyword.equals(""))  
        {  
          String res = "";  
          File[] files = root.listFiles();  
          for(File f : files)  
          {  
            res += f.getPath() + "\n";  
          }  
          textView1.setText(res);  
          return;  
        }  
        else 
        {  
          textView1.setText(findFile(root, keyword));  
        }  
          
        return;  
      }  
    });  
  }  
    
  private String findFile (File file, String keyword)  
  {  
    String res = "";  
    if (!file.isDirectory())  
    {  
      res = "不是目录";  
      return res;  
    }  
    File[] files = new File(file.getPath()).listFiles();  
      
    for (File f : files)  
    {  
      if (f.getName().indexOf(keyword) >= 0)  
      {  
        res += f.getPath() + "\n";  
      }  
    }    
 
     if (res.equals(""))  
    {  
      res = "没有找到相关文件";  
    }  
       
    return res;  
        
  }  
} 

以上就是实现Android 搜索 SD卡文件的实现,有需要的朋友可以看下,希望能帮助你开发相应的功能。

相关文章

  • Android使用Retrofit实现自定义Converter解析接口流程详解

    Android使用Retrofit实现自定义Converter解析接口流程详解

    Retrofit是一个RESTful的HTTP网络请求框架的封装,网络请求的工作本质上是OkHttp完成,而Retrofit仅负责网络请求接口的封装
    2023-03-03
  • Android Studio实现带三角函数对数运算功能的高级计算器

    Android Studio实现带三角函数对数运算功能的高级计算器

    这篇文章主要为大家详细介绍了Android Studio实现带三角函数对数运算功能的高级计算器,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2022-05-05
  • Android  Surfaceview的绘制与应用

    Android Surfaceview的绘制与应用

    这篇文章主要介绍了Android Surfaceview的绘制与应用的相关资料,需要的朋友可以参考下
    2017-07-07
  • Android实现两个数相加功能

    Android实现两个数相加功能

    这篇文章主要为大家详细介绍了Android实现两个数相加功能,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2020-03-03
  • Android自定义View实现旋转的圆形图片

    Android自定义View实现旋转的圆形图片

    这篇文章主要为大家详细介绍了Android自定义View实现旋转的圆形图片,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2018-01-01
  • Android实现调用摄像头进行拍照功能

    Android实现调用摄像头进行拍照功能

    这篇文章主要为大家详细介绍了Android实现调用摄像头进行拍照功能,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2018-04-04
  • 详解Android ViewPager2中的缓存和复用机制

    详解Android ViewPager2中的缓存和复用机制

    最近接触到竖向整页滑动的需求,发现了viewpager2,viewpager2支持fragment,保留了viewpager的特性,下面这篇文章主要给大家介绍了关于ViewPager2中的缓存和复用机制的相关资料,需要的朋友可以参考下
    2021-11-11
  • Android获取RecyclerView滑动距离方法详细讲解

    Android获取RecyclerView滑动距离方法详细讲解

    RecyclerView是Android一个更强大的控件,其不仅可以实现和ListView同样的效果,还有优化了ListView中的各种不足。其可以实现数据纵向滚动,也可以实现横向滚动(ListView做不到横向滚动)。接下来讲解RecyclerView的用法
    2023-01-01
  • android ViewPager实现滑动翻页效果实例代码

    android ViewPager实现滑动翻页效果实例代码

    本篇文章主要介绍了android ViewPager实现滑动翻页效果实例代码,具有一定的参考价值,感兴趣的小伙伴们可以参考一下。
    2017-03-03
  • Kotlin语言使用WebView示例介绍

    Kotlin语言使用WebView示例介绍

    随着后台技术的不断发展,App前端的应用都布置了Web页面的界面,这个界面就是由WebView组件渲染出来的。WebView由如下优点:可以直接显示和渲染Web页面或者网页;可以直接调用网络上或者本地的html文件,也可以和JavaScript交互使用
    2022-09-09

最新评论