好吧,我的问题很简单
在我的布局中,我有一个 EditText 和两个 ImageView
我在两个 ImageView 中输入任何单词 EditText,我必须根据字母显示图像,将其作为 EditText 调用的单词发送,当你想调用一个字母时,我的问题就出现了:
如果我输入单词“home”应该进入单词并根据字母显示两个ImageView图像然后会显示C(图像C)然后是A(图片A)
问题是我可以制作找到一个字母的过程,我试过用for但只识别最后一个字母,我也尝试过一种延迟(延迟)但没有奏效
我的代码的一部分:
public class deletreo extends Activity {
protected TextView tv;
protected EditText etxt;
protected ImageView img,img2;
final Handler handle = new Handler();
protected void mth(){
Thread t = new Thread(){
public void run(){
try{
Thread.sleep(1000);
}catch(InterruptedException e){
e.printStackTrace();
}
handle.post(proceso);
}
};
t.start();
}
final Runnable proceso = new Runnable(){
public void run(){
letra();
}
};
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
requestWindowFeature(Window.FEATURE_NO_TITLE);
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FULLSCREEN);
tv = new TextView(this);
setContentView(R.layout.deletreo);
etxt = (EditText)findViewById(R.id.text);
Button btn = (Button)findViewById(R.id.btn7);
btn.setOnClickListener(new OnClickListener() {
public void onClick(View v) {
mth();
}
});
}//fin bundle
private void letra() {
String t = etxt.getText().toString();
char[] array = t.toCharArray();
int p = array.length;
for(int j=0; j<p;j++){
if(array[j] == 'a' || array[j] == 'A'){
img = (ImageView)findViewById(R.id.img);
img.setImageResource(R.drawable.aa);
img2 = (ImageView)findViewById(R.id.img2);
img2.setImageResource(R.drawable.image_1);
onStop();
}
if(array[j] == 'b' || array[j] == 'B'){
img = (ImageView)findViewById(R.id.img);
img.setImageResource(R.drawable.bb);
img2 = (ImageView)findViewById(R.id.img2);
img2.setImageResource(R.drawable.image_2);
}
知道如何解决这个问题吗?