2014-01-29 1 views
0

2 개의 webView를 나란히 포함하는 간단한 활동을 만들었습니다. 다음 코드를 사용하여 초기화합니다.Android에서 동일한 활동으로 동시에 두 개의 WebView를 실행할 수 있습니까?

문제는 위의 코드에서 webView1은 항상로드되지만 webView2는 항상 공백 (그냥 흰색 상자)이며 나는 이유를 모르겠다는 것입니다. 당신이 내 코드에서 볼 수

android.widget.TextView cannot be cast to android.webkit.WebView 

더한다 : 여기

난 후 완전히 webView1를 제거하면 나는이 오류가 발생하기 때문에 문제가 일식과 실제로이었다 믿고 내 xml 파일

<?xml version="1.0" encoding="utf-8"?> 
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
android:layout_width="match_parent" 
android:layout_height="match_parent" 
android:paddingBottom="10dip" 
android:paddingLeft="10dip" 
android:paddingRight="10dip" 
android:paddingTop="10dip" > 


    <WebView 
    android:id="@+id/webView2" 
    android:layout_width="470dp" 
    android:layout_height="300dp" 
    android:layout_alignParentBottom="true" 
    android:layout_alignParentRight="true" /> 

    <WebView 
    android:id="@+id/webView1" 
    android:layout_width="470dp" 
    android:layout_height="300dp" 
    android:layout_alignParentBottom="true" 
    android:layout_alignParentLeft="true"/> 


    <TextView 
     android:id="@+id/textView1" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_alignLeft="@+id/webView1" 
     android:layout_alignParentTop="true" 
     android:layout_marginTop="49dp" 
     android:text="Cell" 
     android:textAppearance="?android:attr/textAppearanceLarge" /> 

    <TextView 
     android:id="@+id/textView2" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_above="@+id/TextView01" 
     android:layout_alignParentLeft="true" 
     android:text="Name" 
     android:textAppearance="?android:attr/textAppearanceLarge" /> 

    <TextView 
     android:id="@+id/TextView01" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_alignBaseline="@+id/textView1" 
     android:layout_alignBottom="@+id/textView1" 
     android:layout_marginLeft="50dp" 
     android:layout_toRightOf="@+id/textView2" 
     android:text="Large Text" 
     android:textAppearance="?android:attr/textAppearanceLarge" /> 

    <TextView 
     android:id="@+id/textView3" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_above="@+id/TextView01" 
     android:layout_alignLeft="@+id/TextView01" 
     android:text="Large Text" 
     android:textAppearance="?android:attr/textAppearanceLarge" /> 

    <TextView 
     android:id="@+id/textView4" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_above="@+id/webView1" 
     android:layout_centerHorizontal="true" 
     android:layout_marginBottom="23dp" 
     android:text="Large Text" 
     android:textAppearance="?android:attr/textAppearanceLarge" /> 
</RelativeLayout> 
+0

서로 꼭대기에 있지 않습니까? 화면의 크기는 얼마나 큽니까? – njzk2

+0

해당 nexus 7 없습니다, 그들은 나란히, 화면 너비가 1000dp보다 큽니다. – stackdaddy

+0

webView1에서 URL을로드하지 않으면 어떻게됩니까? – njzk2

답변

0

입니다 감각은 당신이 볼 수 있다는 것을 고려하면 어디서나 그 일을하지 않고 실제로 TextViews를 사용하지도 않습니다.

완전히 깨끗하고 이상한 문제가 여전히 존재합니다. Android Studio로 이동합니다.

  • Android Studio로 옮겨져 예상대로 작동하고 레이아웃을 처리하는 것이 Eclipse 사용 경험보다 훨씬 빠릅니다.