好的,我已经创建了一个程序,但是当我开始运行它时,我以前没有任何问题。现在我在运行它时得到stackoverflowerror。问题出现在我的选项卡活动中。在我的一个选项卡中,您可以在其中打开活动。仅当我在该选项卡内导航时才会产生该错误。
请你看看我的代码,让我知道我做错了什么。
这是我的清单活动声明的示例:
<activity
android:name=".EarlyStrat"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:label="info2"
android:noHistory="true"
android:launchMode="singleInstance"
android:theme="@android:style/Theme.Dialog" >
</activity>
这是似乎导致错误的 xml 文件之一的声明:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#000000"
android:orientation="vertical" >
<LinearLayout
android:id="@+id/arrowyes"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="#000000"
android:orientation="horizontal" >
<ImageView
android:layout_width="48dp"
android:layout_height="48dp"
android:layout_gravity="center"
android:background="@drawable/backarrow" />
<TextView
android:id="@+id/returns"
android:layout_width="200dp"
android:layout_height="40dp"
android:layout_gravity="center"
android:background="@drawable/newsbutton"
android:gravity="center"
android:text="click here to RETURN"
android:textColor="#FFFFFF"
android:textSize="15dp" />
</LinearLayout>
<TextView
android:layout_width="fill_parent"
android:layout_height="40dp"
android:layout_gravity="center"
android:gravity="center"
android:padding="5dp"
android:text="Early Strategy"
android:textColor="#FFFFFF"
android:textSize="25dp" />
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/onebgr"
android:fadeScrollbars="false"
android:fillViewport="true"
android:orientation="vertical" >
<LinearLayout
android:id="@+id/title1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical" > (there is more code after this and it is nested as well)...
xml代码继续......
有什么建议和/或你能指出我在哪里可以找到这些信息吗?