通过关键字母快速搜索手机sd卡中的文件,输出的文本可以上下滚动。
要搜索文件首先要更改权限,在manifest.xml中添加:
<uses-permission android:name="android.permission.INTERNET"></uses-permission>
JAVA CODE:
import java.io.File;
{
/* 取得输入的关键词 */
String keyword = mKeyword.getText().toString().trim();}
XML:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
android:id="@+id/layout1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/white"
xmlns:android="http://schemas.android.com/apk/res/android"
>
<TextView
android:id="@+id/mText"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textSize="18sp"
android:text="@string/str_title"
android:textColor="@drawable/black"
/>
<EditText
android:id="@+id/mKeyword"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textSize="18sp"
android:layout_below="@+id/mText"
/>
<Button
android:id="@+id/mButton"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/str_button"
android:layout_below= "@+id/mKeyword"
/>
<TextView
android:id="@+id/mResult"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textColor="@drawable/blue"
android:layout_below="@+id/mButton"
android:scrollbars="vertical"
android:ellipsize="marquee"
android:maxLines="25"
/>
</RelativeLayout>
from:http://blog.csdn.net/zjbpku