我不明白为什么我只(现在)在 aG alaxy Tab2(Android 4.1.2 原始版本)上收到此错误。 在 Galaxy S3(相同版本的 Android)和 PC 模拟上没有收到错误。 这是我的代码:
activity_dialogscore.xml(我将在其中放置两个片段):
<?xml version="1.0" encoding="utf-8"?>
<ViewFlipper xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
style="@style/LayoutPaperScore"
android:layout_gravity="center"
android:clickable="true"
android:orientation="vertical"
android:id="@+id/viewflipper_1">
<fragment
android:id="@+id/fragment_1"
android:name="com.didymond.baskstat.FragmentScore"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:layout="@layout/fragment_score" />
<fragment
android:id="@+id/fragment_2"
android:name="com.didymond.baskstat.FragmentStatScore"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:layout="@layout/fragment_statscore" />
</ViewFlipper>
FragmentScore.java
package com.didymond.baskstat;
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
public class FragmentScore extends Fragment{
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState){
return inflater.inflate(R.layout.fragment_score, container, false);
}
}
FragmentStatScore.java
package com.didymond.baskstat;
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
public class FragmentStatScore extends Fragment{
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState){
return inflater.inflate(R.layout.fragment_statscore, container, false);
}
}
这是主要活动(只是其中的一部分),它使用了两个片段:
MainFragment.java
public class MainFragment extends FragmentActivity implements AlertDialogChangePlayer.OnDialogDismissListener{
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_dialogscore);
[other_code]
}
[other_code]
}
如果在相同的 Android 版本上运行,为什么我只在 Galaxy Tab 2 上而不在 Galaxy S3 上收到错误?如果需要,将插入任何其他代码...