- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我的 fragment_container
中有 3 种类型的 fragment ,在我的 classic_menu.xml
中用于我的 MainActivity.java
。我从 fragment A 开始,然后通过使用 FragmentTransaction.replace(R.id.fragment_container, B)
的方法按下按钮转到 fragment B。当我希望使用相同的方法从 B 转到 fragment C 时,问题就来了。我在使用您在下面看到的内容时遇到了转换错误。 编辑 我通过使用 findFragmentByTag()
而不是 findFragmentById()
获得空指针。
这里是有问题的 fragment :
fragment A:
import android.os.Bundle;
import android.support.annotation.Nullable;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import com.example.R;
public class MainMenuFragment extends Fragment{
@Override
public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle onSavedInstanceState){
View view = inflater.inflate(R.layout.main_menu_fragment, container, false);
return view;
}
}
fragment B:
import android.os.Bundle;
import android.support.annotation.Nullable;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import com.example.R;
public class ClassicMenuFragment extends Fragment{
@Override
public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle onSavedInstanceState){
View view = inflater.inflate(R.layout.classic_menu_fragment, container, false);
return view;
}
}
fragment C:
import android.os.Bundle;
import android.support.annotation.Nullable;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import com.example.MainActivity;
import com.example.R;
import com.example.widgets.TextViewPlus;
public class OnePlayerFragment extends Fragment{
private static TextViewPlus topScore;
private static TextViewPlus bottomScore;
@Override
public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle onSavedInstanceState){
View view = inflater.inflate(R.layout.one_player_fragment, container, false);
topScore = (TextViewPlus) view.findViewById(R.id.topPlayerScore1P);
bottomScore = (TextViewPlus) view.findViewById(R.id.bottomPlayerScore1P);
return view;
}
/**
* Changes the text of certain textViewPlus objects based on the given score
* @param view int value that determines which view to update
* @param score value to set the text to
*/
public void setScore(int view, int score){
if(view == MainActivity.TOP_PLAYER_1P) topScore.setText("" + score);
else if(view == MainActivity.BOTTOM_PLAYER) bottomScore.setText("" + score);
}
}
正在使用的按钮:
// in main_menu_fragment.xml
<com.example.widgets.ButtonPlus
android:id="@+id/classicB"
style="@style/button"
android:onClick="StartClassicMenu"/>
// in classic_menu_fragment.xml
<com.example.widgets.ButtonPlus
android:id="@+id/onePlayerB"
style="@style/button"
android:onClick="StartGame"/>
MainActivity.java
:
// cut a lot of stuff for brevity
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.support.v4.app.FragmentActivity;
import android.support.v4.app.FragmentTransaction;
import android.view.LayoutInflater;
import android.view.View;
import android.widget.TextView;
import com.example.fragments.ClassicMenuFragment;
import com.example.fragments.MainMenuFragment;
import com.example.fragments.OnePlayerFragment;
public class MainActivity extends FragmentActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.classic_menu);
// cut more stuff
theView = (GameView)findViewById(R.id.theView); // get reference to the GameView
// begin the game in Animation mode and pass this MainActivity to the GameView so it can be passed along
theView.initiateGameThread(GameState.ANIMATION_MODE, this);
theThread = theView.getThread(); // get reference to the GameThread
theGame = theThread.getGameState(); // get reference to the GameState
if (findViewById(R.id.fragment_container) != null) {
if (savedInstanceState != null) return;
MainMenuFragment mMenu = new MainMenuFragment();
// Add the fragment to the 'fragment_container' FrameLayout
getSupportFragmentManager().beginTransaction().add(R.id.fragment_container, mMenu).commit();
}
}
public void StartClassicMenu(View v){
changeToFragment(new ClassicMenuFragment(), "ClassicMenu");
inFragment = true;
}
public void StartGame(View v){
switch (v.getId()){
case R.id.onePlayerB:
theGame.setMode(GameState.ONE_PLAYER_MODE);
changeToFragment(new OnePlayerFragment(), "OnePlayer");
Log.d("MainActivity", "StartGame() for 1P mode called");
break;
// other cases here but cut out
theGame.reset();
}
// called from gamestate when views need to be updated
public void setViewScore(int view, int score){
if(theGame.getMode() == GameState.ONE_PLAYER_MODE){
Log.d("MainActivity", "setViewScore() for 1P mode called");
OnePlayerFragment f = (OnePlayerFragment) getSupportFragmentManager().findFragmentById(R.id.fragment_container);
if(f == null) Log.d("OnePlayerFragment", "null!!!");
f.setScore(view, score);
}
// other cases cut out
}
/**
* Handles creating and managing a uniform FragmentTransaction for the entire app
* @param newFragment the new Fragment that will fade in, replacing whichever fragment was in use
*/
public void changeToFragment(Fragment newFragment, String tag){
Log.d("MainActivity", "changeToFragment() Called with tag \"" + tag + "\"");
// Create the standard fade in/out transaction
FragmentTransaction transaction = getSupportFragmentManager().beginTransaction();
transaction.setCustomAnimations(android.R.anim.fade_in, android.R.anim.fade_out);
// Replace the old fragment in the Relative Layout view with the new one
transaction.replace(R.id.fragment_container, newFragment, tag);
transaction.commit(); // Commit the transaction
}
MainActivity
各自的 xml 布局文件:
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/back_grey">
<com.example.GameView
android:id="@+id/theView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="center" />
<RelativeLayout
android:id="@+id/rLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="centerCrop">
<FrameLayout
android:id="@+id/fragment_container"
android:layout_width="match_parent"
android:layout_height="match_parent">
</FrameLayout>
</RelativeLayout>
现在是最精彩的部分:
07-18 16:30:01.999: D/OpenGLRenderer(12335): Enabling debug mode 0
07-18 16:30:02.259: D/GameView(12335): surfaceCreated() Called
07-18 16:30:02.649: I/Timeline(12335): Timeline: Activity_idle id: android.os.BinderProxy@1f1e5333 time:475861093
07-18 16:30:13.179: D/ViewRootImpl(12335): ViewPostImeInputStage ACTION_DOWN
07-18 16:30:13.389: D/MainActivity(12335): changeToFragment() Called with tag "ClassicMenu"
07-18 16:30:14.099: D/ViewRootImpl(12335): ViewPostImeInputStage ACTION_DOWN
07-18 16:30:14.169: D/MainActivity(12335): changeToFragment() Called with tag "OnePlayer"
07-18 16:30:14.169: D/MainActivity(12335): StartGame() for 1P mode called
07-18 16:30:14.179: D/MainActivity(12335): setViewScore() for 1P mode called
07-18 16:30:14.219: D/AndroidRuntime(12335): Shutting down VM
07-18 16:30:14.249: E/AndroidRuntime(12335): FATAL EXCEPTION: main
07-18 16:30:14.249: E/AndroidRuntime(12335): Process: com.brownapps.battlepong, PID: 12335
07-18 16:30:14.249: E/AndroidRuntime(12335): java.lang.IllegalStateException: Could not execute method of the activity
07-18 16:30:14.249: E/AndroidRuntime(12335): at android.view.View$1.onClick(View.java:4222)
07-18 16:30:14.249: E/AndroidRuntime(12335): at android.view.View.performClick(View.java:5156)
07-18 16:30:14.249: E/AndroidRuntime(12335): at android.view.View$PerformClick.run(View.java:20755)
07-18 16:30:14.249: E/AndroidRuntime(12335): at android.os.Handler.handleCallback(Handler.java:739)
07-18 16:30:14.249: E/AndroidRuntime(12335): at android.os.Handler.dispatchMessage(Handler.java:95)
07-18 16:30:14.249: E/AndroidRuntime(12335): at android.os.Looper.loop(Looper.java:145)
07-18 16:30:14.249: E/AndroidRuntime(12335): at android.app.ActivityThread.main(ActivityThread.java:5835)
07-18 16:30:14.249: E/AndroidRuntime(12335): at java.lang.reflect.Method.invoke(Native Method)
07-18 16:30:14.249: E/AndroidRuntime(12335): at java.lang.reflect.Method.invoke(Method.java:372)
07-18 16:30:14.249: E/AndroidRuntime(12335): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1399)
07-18 16:30:14.249: E/AndroidRuntime(12335): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1194)
07-18 16:30:14.249: E/AndroidRuntime(12335): Caused by: java.lang.reflect.InvocationTargetException
07-18 16:30:14.249: E/AndroidRuntime(12335): at java.lang.reflect.Method.invoke(Native Method)
07-18 16:30:14.249: E/AndroidRuntime(12335): at java.lang.reflect.Method.invoke(Method.java:372)
07-18 16:30:14.249: E/AndroidRuntime(12335): at android.view.View$1.onClick(View.java:4217)
07-18 16:30:14.249: E/AndroidRuntime(12335): ... 10 more
07-18 16:30:14.249: E/AndroidRuntime(12335): Caused by: java.lang.ClassCastException: com.example.fragments.ClassicMenuFragment cannot be cast to com.example.fragments.OnePlayerFragment
07-18 16:30:14.249: E/AndroidRuntime(12335): at com.example.MainActivity.setViewScore(MainActivity.java:325)
07-18 16:30:14.249: E/AndroidRuntime(12335): at com.example.GameState$5.run(GameState.java:650)
07-18 16:30:14.249: E/AndroidRuntime(12335): at android.app.Activity.runOnUiThread(Activity.java:5517)
07-18 16:30:14.249: E/AndroidRuntime(12335): at com.example.GameState.reset(GameState.java:647)
07-18 16:30:14.249: E/AndroidRuntime(12335): at com.example.MainActivity.StartGame(MainActivity.java:146)
07-18 16:30:14.249: E/AndroidRuntime(12335): ... 13 more
您可能需要的唯一其他信息是,在 theGame
的 reset()
方法中,它调用了 上的
对象通过 setViewScore()
>MainActivitytheView.initiateGameThread(GameState.ANIMATION_MODE, this);
使用 runOnUiThread()
传递给它。
所以,我的问题是,为什么我第一次调用 changeToFragment()
时将 MainMenuFragment
更改为 ClassicMenuFragment
,但搞砸了第二次应该将 ClassicMenuFragment
更改为 OnePlayerFragment
时?
感谢您花时间考虑我的这个问题。
最佳答案
ClassCastException
是正确的 - 您不能将 ClassicMenuFragment
转换为 OnePlayerFragment
。在继承方面,您不能将一个兄弟类强制转换为另一个兄弟类(这两个类都是兄弟类,具有共同的父级 Fragment
)。一个类比是 Orange
和 Apple
都是 Fruit
类的子类,但是您不能将 Orange
转换为Apple
(这没有意义!)
相反,删除对 OnePlayerFragment
的强制转换并使用 instanceof
关键字,仅在确定 fragment 是哪个子实例后才强制转换:
Fragment f = getSupportFragmentManager().findFragmentById(R.id.fragment_container);
if (f == null) Log.d("Fragment", "null!!!");
if (f instanceof OnePlayerFragment) {
((OnePlayerFragment) f).setScore(view, score);
}
关于java - 第二次调用 FragmentTransaction.replace() 时出现 Android Fragment 转换错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31495924/
为了让我的代码几乎完全用 Jquery 编写,我想用 Jquery 重写 AJAX 调用。 这是从网页到 Tomcat servlet 的调用。 我目前情况的类似代码: var http = new
我想使用 JNI 从 Java 调用 C 函数。在 C 函数中,我想创建一个 JVM 并调用一些 Java 对象。当我尝试创建 JVM 时,JNI_CreateJavaVM 返回 -1。 所以,我想知
环顾四周,我发现从 HTML 调用 Javascript 函数的最佳方法是将函数本身放在 HTML 中,而不是外部 Javascript 文件。所以我一直在网上四处寻找,找到了一些简短的教程,我可以根
我有这个组件: import {Component} from 'angular2/core'; import {UserServices} from '../services/UserService
我正在尝试用 C 实现一个简单的 OpenSSL 客户端/服务器模型,并且对 BIO_* 调用的使用感到好奇,与原始 SSL_* 调用相比,它允许一些不错的功能。 我对此比较陌生,所以我可能会完全错误
我正在处理有关异步调用的难题: 一个 JQuery 函数在用户点击时执行,然后调用一个 php 文件来检查用户输入是否与数据库中已有的信息重叠。如果是这样,则应提示用户确认是否要继续或取消,如果他单击
我有以下类(class)。 public Task { public static Task getInstance(String taskName) { return new
嘿,我正在构建一个小游戏,我正在通过制作一个数字 vector 来创建关卡,该数字 vector 通过枚举与 1-4 种颜色相关联。问题是循环(在 Simon::loadChallenge 中)我将颜
我有一个java spring boot api(数据接收器),客户端调用它来保存一些数据。一旦我完成了数据的持久化,我想进行另一个 api 调用(应该处理持久化的数据 - 数据聚合器),它应该自行异
首先,这涉及桌面应用程序而不是 ASP .Net 应用程序。 我已经为我的项目添加了一个 Web 引用,并构建了各种数据对象,例如 PayerInfo、Address 和 CreditCard。但问题
我如何告诉 FAKE 编译 .fs文件使用 fsc ? 解释如何传递参数的奖励积分,如 -a和 -target:dll . 编辑:我应该澄清一下,我正在尝试在没有 MSBuild/xbuild/.sl
我使用下划线模板配置了一个简单的主干模型和 View 。两个单独的 API 使用完全相同的配置。 API 1 按预期工作。 要重现该问题,请注释掉 API 1 的 URL,并取消注释 API 2 的
我不确定什么是更好的做法或更现实的做法。我希望从头开始创建目录系统,但不确定最佳方法是什么。 我想我在需要显示信息时使用对象,例如 info.php?id=100。有这样的代码用于显示 Game.cl
from datetime import timedelta class A: def __abs__(self): return -self class B1(A):
我在操作此生命游戏示例代码中的数组时遇到问题。 情况: “生命游戏”是约翰·康威发明的一种细胞自动化技术。它由一个细胞网格组成,这些细胞可以根据数学规则生存/死亡/繁殖。该网格中的活细胞和死细胞通过
如果我像这样调用 read() 来读取文件: unsigned char buf[512]; memset(buf, 0, sizeof(unsigned char) * 512); int fd;
我用 C 编写了一个简单的服务器,并希望调用它的功能与调用其他 C 守护程序的功能相同(例如使用 ./ftpd start 调用它并使用 ./ftpd stop 关闭该实例)。显然我遇到的问题是我不知
在 dos 中,当我粘贴此命令时它会起作用: "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" https://google.
在 dos 中,当我粘贴此命令时它会起作用: "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" https://google.
我希望能够从 cmd 在我的 Windows 10 计算机上调用 python3。 我已重新安装 Python3.7 以确保选择“添加到路径”选项,但仍无法调用 python3 并使 CMD 启动 P
我是一名优秀的程序员,十分优秀!