我为我的程序准备了一个输入屏幕,我在其中放置了一个edittext和ImageViews.Now问题是我能够通过虚拟键盘在edittext中键入文本,但问题是我完成后我的文本然后我无法从edittext中出来,光标只保留在edittext框中。 我有一个imageView下面点击继续表格,但它是可点击的那个momen..please help !!!
我的代码是
我的xml
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<ImageView
android:id="@+id/begin_"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="170dp"
android:layout_marginTop="220dp"
android:src="@drawable/begin" />
<ImageView
android:id="@+id/enter"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="150dp"
android:layout_marginTop="30dp"
android:src="@drawable/enter_name" />
<ImageView
android:id="@+id/roof"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/roof" />
<EditText
android:id="@+id/editText2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="180dp"
android:layout_marginTop="180dp"
android:ems="8"
android:inputType="textMultiLine"
android:imeOptions="actionDone"/>
</FrameLayout>
我的主要java类
package game.pack;
import android.app.Activity;
import android.content.Context;
import android.os.Bundle;
import android.view.*;
import android.view.inputmethod.InputMethodManager;
import android.widget.EditText;
import android.widget.ImageButton;
import android.widget.ImageView;
public class Begin extends Activity implements View.OnClickListener {
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
requestWindowFeature(Window.FEATURE_NO_TITLE);
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,WindowManager.LayoutParams.FLAG_FULLSCREEN);
setContentView(R.layout.entry);
ImageView begin = (ImageView) findViewById(R.id.begin_);
begin.setOnClickListener(this);
}
public void onClick(View v) {
switch(v.getId()) {
case R.id.begin_:
setContentView(new SushiMain(this));
break;
default:
break;
}
}
}
我的机器人清单是
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="game.pack"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk android:minSdkVersion="15" />
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
<activity
android:name=".FrontScreen"
android:screenOrientation="landscape"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".Begin"
android:screenOrientation="landscape"
android:label="@string/app_name"
>
<intent-filter>
<action android:name="begingame" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity
android:name=".Sushitap"
android:screenOrientation="landscape"
android:label="@string/app_name" >
<intent-filter>
<action android:name="gameover" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
</application>
答案 0 :(得分:1)
使用View.OnKeyListener进行EditText,在输入EditText后输入KEY PRESSED时从EditText中删除Focus:
ditText.setOnKeyListener(onSoftKeyboardDonePress);
private View.OnKeyListener onSoftKeyboardDonePress=new View.OnKeyListener()
{
public boolean onKey(View v, int keyCode, KeyEvent event)
{
if (event.getKeyCode() == KeyEvent.KEYCODE_ENTER)
{
// code to hide the soft keyboard
EditTexst.clearFocus();
EditTexst.requestFocus(EditText.FOCUS_DOWN);
}
return false;
}
};
答案 1 :(得分:0)
试试这个。
editTextId.clearFocus();
editTextId.requestFocus(EditText.FOCUS_DOWN); // assuming that you want to move the focus to the next View Element. If you want it to go to the previous View, use FOCUS_UP
答案 2 :(得分:0)
您需要将xml中的edittext链接到您的代码。在你的oncreate方法中添加
EditText edittext= (EditText ) findViewById(R.id.editText2);
答案 3 :(得分:0)
你能尝试将它放在edittext的布局文件中吗?
android:focusableInTouchMode="true"
答案 4 :(得分:0)
如果您的应用需要编辑文本和旁边的图像视图..那么这里是您可以使用的代码。 在layout.xml中,您可以为带有图像
的edittext添加此代码<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/white2" >
<EditText
android:id="@+id/et_search"
android:layout_width="280dp"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginBottom="5dp"
android:layout_marginLeft="20dp"
android:layout_marginRight="20dp"
android:layout_marginTop="5dp"
android:drawableRight="@drawable/search_20"
android:ems="10"
android:hint="@string/search_brdNm" />
</LinearLayout>
在您的java类中,您可以拥有以下代码:
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.search_asset);
mEt_search = (EditText) findViewById(R.id.et_search);
mEt_search.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
String str_searchTxt = mEt_search.getText().toString().trim();
String str_channelNm = AppConfigurationUtils.getChannelName();
if (str_searchTxt.length() == 0) {
Toast.makeText(getApplicationContext(),
getResources().getString(R.string.ENTER_MANDATORY),
Toast.LENGTH_LONG).show();
return;
}
}
});
}
答案 5 :(得分:0)
嘿,伙计们我的问题解决了! 实际上我正在从其他视图移动到此视图,在第一个视图中,我通过其布局ID调用当前的类活动,因此在这种情况下,imageview不是正常按钮,而是仅仅作为视图
所以在第一个视图中我使用了一个意图来调用我上面发布的活动的类,这成功地完成了我的任务!!!
感谢大家的时间和努力......非常感谢!!!!
谢谢!!!