Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/java/321.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Java Valor Wave F7020安卓设备_Java_Android_Biometrics - Fatal编程技术网

Java Valor Wave F7020安卓设备

Java Valor Wave F7020安卓设备,java,android,biometrics,Java,Android,Biometrics,大家好,有没有人曾经与Valor Wave F7020合作过?我希望能够使用该设备的指纹功能,但大部分内容都是中文。我有他们的示例代码,但我不知道如何使其工作。 当我运行它时,无论我按什么,我都会得到一个中文回复,标题也是中文的 *******************activity_main.xml**************** <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"

大家好,有没有人曾经与Valor Wave F7020合作过?我希望能够使用该设备的指纹功能,但大部分内容都是中文。我有他们的示例代码,但我不知道如何使其工作。 当我运行它时,无论我按什么,我都会得到一个中文回复,标题也是中文的

*******************activity_main.xml****************

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" >

  <!--  <LinearLayout
        android:id="@+id/linearLayout1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical" >

        <Button
            android:id="@+id/btOpen"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/a1" />
    </LinearLayout>
 --> 
    <LinearLayout
        android:id="@+id/linearLayout2"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_below="@+id/linearLayout1"
        android:orientation="horizontal" >

        <Button
            android:id="@+id/btImage"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:enabled="false"
            android:text="@string/a2" />

        <Button
            android:id="@+id/btEnrol"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:enabled="false"
            android:text="@string/a3" />
        <Button
            android:id="@+id/btMatch"
             android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:enabled="false"
            android:text="@string/a4" />

        <Button
            android:id="@+id/btEmpty"
             android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:enabled="false"
            android:text="@string/a5" />

        <Button
            android:id="@+id/btCancel"
             android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:enabled="false"
            android:text="@string/a6" />

    </LinearLayout>

    <TextView
        android:id="@+id/tvInfo"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_below="@+id/linearLayout2"
        android:layout_marginTop="29dp"
        android:text="@string/hello_world"
        tools:context=".MainActivity" />

    <ImageView
        android:id="@+id/imageView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_below="@+id/tvInfo"
        android:layout_marginLeft="58dp"
        android:layout_marginTop="22dp"/>
        <!-- android:src="@drawable/logo" --> 

</RelativeLayout>
<resources>

    <string name="app_name">fingerprint</string>
    <string name="hello_world">Demo程序, 仅供参考!</string>
    <string name="menu_settings">Settings</string>
    <string name="title_activity_main">MainActivity</string>
    <string name="a1">打开设备</string>
    <string name="a2">获取图像</string>
    <string name="a3">录入指纹</string>
    <string name="a4">指纹匹配</string>
    <string name="a5">清空指纹库</string>
    <string name="a6">取消操作</string>

</resources>
*****************strings.xml*****************

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" >

  <!--  <LinearLayout
        android:id="@+id/linearLayout1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical" >

        <Button
            android:id="@+id/btOpen"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/a1" />
    </LinearLayout>
 --> 
    <LinearLayout
        android:id="@+id/linearLayout2"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_below="@+id/linearLayout1"
        android:orientation="horizontal" >

        <Button
            android:id="@+id/btImage"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:enabled="false"
            android:text="@string/a2" />

        <Button
            android:id="@+id/btEnrol"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:enabled="false"
            android:text="@string/a3" />
        <Button
            android:id="@+id/btMatch"
             android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:enabled="false"
            android:text="@string/a4" />

        <Button
            android:id="@+id/btEmpty"
             android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:enabled="false"
            android:text="@string/a5" />

        <Button
            android:id="@+id/btCancel"
             android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:enabled="false"
            android:text="@string/a6" />

    </LinearLayout>

    <TextView
        android:id="@+id/tvInfo"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_below="@+id/linearLayout2"
        android:layout_marginTop="29dp"
        android:text="@string/hello_world"
        tools:context=".MainActivity" />

    <ImageView
        android:id="@+id/imageView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_below="@+id/tvInfo"
        android:layout_marginLeft="58dp"
        android:layout_marginTop="22dp"/>
        <!-- android:src="@drawable/logo" --> 

</RelativeLayout>
<resources>

    <string name="app_name">fingerprint</string>
    <string name="hello_world">Demo程序, 仅供参考!</string>
    <string name="menu_settings">Settings</string>
    <string name="title_activity_main">MainActivity</string>
    <string name="a1">打开设备</string>
    <string name="a2">获取图像</string>
    <string name="a3">录入指纹</string>
    <string name="a4">指纹匹配</string>
    <string name="a5">清空指纹库</string>
    <string name="a6">取消操作</string>

</resources>

以下是您发布的代码片段中UI标题的翻译

A1开放式装置打开设备 A2获取图像获取图像 A3指纹输入录入指纹 A4指纹匹配指纹匹配 A5空指纹数据库清空指纹库 A6取消取消操作 演示程序程序
Hello world仅供参考仅供参考

就目前情况而言,你的问题的答案只能是肯定的。有人用过那个设备吗?可能这是一个编程问题吗?当然不是。