Featured post

c# - Usage of Server Side Controls in MVC Frame work -

i using asp.net 4.0 , mvc 2.0 web application. project requiremrnt have use server side control in application not possibl in noraml case. ideally want use adrotator control , datalist control. i saw few samples , references in codepleax mvc controllib howwver found less useful. can tell how utilize theese controls in asp.net application along mvc. note: please provide functionalities related adrotator , datalist controls not equivalent functionalities thanks in advace. mvc pages not use normal .net solution makes use of normal .net components impossible. a normal .net page use event driven solution call different methods service side mvc use actions , view completly different way handle things. also, mvc not use viewstate normal .net controlls require. found article discussing mixing of normal .net , mvc.

android - editText is not losing focus -


the edittext not losing focus in app when click out of it, has orange border time , black line cursor.. did linearlayout according surrounding edittext: stop edittext gaining focus @ activity startup doesn't focus on start of app..

this code:

final edittext et = (edittext)findviewbyid(r.id.edittext01);  final inputmethodmanager imm = (inputmethodmanager) getsystemservice(    input_method_service);  et.setonclicklistener(new view.onclicklistener() {    public void onclick(view v) {       imm.showsoftinput(et, inputmethodmanager.show_implicit);    } });  et.setonfocuschangelistener(new view.onfocuschangelistener() {    public void onfocuschange(view v, boolean hasfocus) {       if(hasfocus) {          imm.showsoftinput(et, inputmethodmanager.show_implicit);       } else {          imm.hidesoftinputfromwindow(et.getwindowtoken(), 0);       }    } }); 

but, doesn't seem calling onfocuschange when click anywhere outside edittext!

it's simple. can put following in linearlayout or other else:

android:focusableintouchmode="true" 

Comments

Popular posts from this blog

c# - Usage of Server Side Controls in MVC Frame work -

cocoa - Nesting arrays into NSDictionary object (Objective-C) -

ios - Very simple iPhone App crashes on UILabel settext -