Caused by: java.lang.ClassNotFoundException: android.view.linearlayout

1800 단어
오늘 인터넷 에서 안 드 로 이 드 코드 를 다운로드 합 니 다. 실행 중 이상 의 오류 가 발생 했 습 니 다.
 
 
Caused by: java.lang.ClassNotFoundException: android.view.linearlayout

 
다음 원인 을 찾 았 습 니 다. layot 의 xml 파일 에 있 는 구성 요소 의 대소 문자 문제 로 인해 대소 문 자 를 바 꾸 면 해 결 됩 니 다.
<?xml version="1.0" encoding="UTF-8"?>




	<linearlayout xmlns:android="http://schemas.android.com/apk/res/android" 
	    		android:layout_width="fill_parent" 
	    		android:layout_height="wrap_content">   
				 <progressbar style="android:attr/progressBarStyleHorizontal;"
				     			android:layout_width="fill_parent" 
				     			android:layout_height="wrap_content" 
				     			android:id="@+id/progress"> 
				 
				 </progressbar>
	</linearlayout>

 
수 정 된 코드
<?xml version="1.0" encoding="UTF-8"?>




	<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
	    		android:layout_width="fill_parent" 
	    		android:layout_height="wrap_content">   
				 <ProgressBar style="android:attr/progressBarStyleHorizontal;"
				     			android:layout_width="fill_parent" 
				     			android:layout_height="wrap_content" 
				     			android:id="@+id/progress"> 
				 
				 </ProgressBar>
	</LinearLayout>

 
관련 사이트:
http://stackoverflow.com/questions/6786481/gridview-with-imageview-and-textview
http://blog.csdn.net/debutent/article/details/8703845

좋은 웹페이지 즐겨찾기