반응형

Java 183

ListView.addHeaderView ()를 호출 할 때 ClassCastException이 발생합니까?

ListView.addHeaderView ()를 호출 할 때 ClassCastException이 발생합니까? 목록보기 위에 배치하려는 상당히 복잡한 레이아웃 (RelativeLayouts, TextViews 및 ImageViews 포함)이 있습니다. 이보기는 목록보기와 함께 스크롤되어야합니다. 이 코드를 사용하여 레이아웃을 목록보기에 헤더로 추가해 보았습니다. View v = inflater.inflate(R.layout.list_view, container, false); View header = inflater.inflate(R.layout.header_layout, container, false); // populate views in the header mList = (ListView)v.find..

programing 2021.01.14

RedirectToAction에 모델을 어떻게 포함합니까?

RedirectToAction에 모델을 어떻게 포함합니까? 에서 RedirectToAction아래, 나는를 전달하고 싶습니다 viewmodel. 모델을 리디렉션에 어떻게 전달합니까? 모델이 올바르게 생성되었는지 확인하기 위해 모델 값을 확인하는 중단 점을 설정했습니다. 정확하지만 결과보기에는 모델 속성에서 찾은 값이 포함되지 않습니다. // // model created up here... // return RedirectToAction("actionName", "controllerName", model); ASP.NET MVC 4 RC RedirectToAction 클라이언트 브라우저에 302 응답을 반환하므로 브라우저는 브라우저에 제공된 응답의 위치 헤더 값에있는 url에 새로운 GET 요청을합니다...

programing 2021.01.14

파이썬에서 여러 줄의 원시 입력을 어떻게 읽습니까?

파이썬에서 여러 줄의 원시 입력을 어떻게 읽습니까? 여러 줄의 사용자 입력을받는 Python 프로그램을 만들고 싶습니다. 예를 들면 : This is a multilined input. It has multiple sentences. Each sentence is on a newline. 여러 줄의 원시 입력을 어떻게받을 수 있습니까? sentinel = '' # ends when this string is seen for line in iter(raw_input, sentinel): pass # do things here 모든 줄을 문자열로 얻으려면 다음을 수행하십시오. '\n'.join(iter(raw_input, sentinel)) 파이썬 3 : '\n'.join(iter(input, sentine..

programing 2021.01.14
반응형