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>
서로 꼭대기에 있지 않습니까? 화면의 크기는 얼마나 큽니까? – njzk2
해당 nexus 7 없습니다, 그들은 나란히, 화면 너비가 1000dp보다 큽니다. – stackdaddy
webView1에서 URL을로드하지 않으면 어떻게됩니까? – njzk2