检查文本字段以检查XML

时间:2012-07-16 18:49:02

标签: android

我有一个应用程序,其中显示图像,在这种情况下是蝙蝠侠,在它下面有一个纯文本字段以及一个说检查的按钮。

我想要做的是让用户输入他们认为正确答案的答案(答案是蝙蝠侠),当他们点击按钮时,它会检查xml(我假设)以查看它是否正确,如果是转到下一页。

我想知道这是否可行以及我需要做什么代码。

batman.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@drawable/background"
    android:gravity="center|clip_horizontal"
    android:orientation="vertical" >


    <ImageView
        android:id="@+id/imageView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/batman" />



    <ImageView
        android:id="@+id/imageView2"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:src="@drawable/banner" />



    <EditText
        android:id="@+id/editText2"
        android:layout_width="274dp"
        android:layout_height="wrap_content"
        android:ems="10" >

        <requestFocus />
    </EditText>

    <Button
        android:id="@+id/harley"
        style="?android:attr/buttonStyleSmall"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Check" />

</LinearLayout>

Batman.java

package com.co500.pixel;

import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;

public class Batman extends Activity{

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        // TODO Auto-generated method stub
        super.onCreate(savedInstanceState);
        setContentView(R.layout.batman);

        Button har = (Button) findViewById(R.id.harley);
        har.setOnClickListener(new View.OnClickListener() {

            public void onClick(View v) {
                // TODO Auto-generated method stub
                startActivity(new Intent("com.co500.pixel.HARLEY"));
            }
        });
    }


}

此外,如果可能,输入的答案可以是大写字母还是小写字母?

如果需要更多,例如清单,请随时发表评论

0 个答案:

没有答案