快速地搜索手机文件引擎(JavaIO的应用)

本文介绍了一种使用JavaIO进行手机文件快速搜索的方法。通过创建一个Android应用,该应用允许用户输入文件名并搜索设备上的所有文件。文章详细展示了如何设置用户界面,包括输入框、按钮和显示结果的文本视图,以及实现搜索功能的具体代码。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

快速地搜索手机文件引擎(JavaIO的应用)

新建一个继承Activity类的FileSearchByJavaIOActivity,并设置布局文件为:filesearchbyjavaio.xml。

首先在布局文件中添加一个EditText和一个Button和一个TextView

<EditText

        android:id="@+id/filesearchbyjavaio_edit"

        android:layout_width="fill_parent"

        android:layout_height="wrap_content"

        android:hint="@string/pleaseenteryourfilename" />

 

    <Button

        android:id="@+id/filesearchbyjavaio_btn"

        style="@android:style/Widget.Button.Inset"

        android:layout_width="fill_parent"

        android:layout_height="wrap_content"

        android:hint="@string/search" />

 

    <TextView

        android:id="@+id/filesearchbyjavaio_tv"

        android:layout_width="fill_parent"

        android:layout_height="wrap_content"

        android:textSize="18sp" />

而后为Button添加单击事件。为TextView赋值。

 

package lyx.feng.second;

......

public class FileSearchByJavaIOActivity extends Activity {

    private EditText edit = null;

    private Button btn = null;

    private TextView tv = null;

 

    @Override

    protected void onCreate(Bundle savedInstanceState) {

       super.onCreate(savedInstanceState);

       super.setContentView(R.layout.filesearchbyjavaio);

       this.edit = (EditText) super.findViewById(R.id.filesearchbyjavaio_edit);

       this.btn = (Button) super.findViewById(R.id.filesearchbyjavaio_btn);

       this.tv = (TextView) super.findViewById(R.id.filesearchbyjavaio_tv);

       this.btn.setOnClickListener(new OnClickListener() {

 

           @Override

           public void onClick(View v) {

              tv.setText("");

              String temp = edit.getText().toString().trim();

              if (temp.equals("")) {

                  return;

              }

              File files[] = new File("/").listFiles();

              for (int i = 0; i < files.length; i++) {

                  if (files[i].getName().indexOf(temp)>=0) {

                     tv.append(files[i].getName().toString());

                     tv.append("\n");

                  }

              }

           }

       });

    }

}

 

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值