- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我得到了
Attempt to invoke virtual method 'void android.support.v7.app.MediaRouteActionProvider.setRouteSelector(android.support.v7.media.MediaRouteSelector)' on a null object reference
当我想为我的应用程序添加强制转换支持时,我已经在一个单独的项目中创建了所有内容,现在我只想将所有内容转移到我的应用程序中,但我遇到了这个异常。我看不出我在哪里犯了错误.这是我的代码:
......
private MediaRouter mMediaRouter;
private MediaRouteSelector mMediaRouteSelector;
private MediaRouter.Callback mMediaRouterCallback;
private CastDevice mSelectedDevice;
private GoogleApiClient mApiClient;
private Cast.Listener mCastListener;
private GoogleApiClient.ConnectionCallbacks mConnectionCallbacks;
private ConnectionFailedListener mConnectionFailedListener;
private HelloWorldChannel mHelloWorldChannel;
private boolean mApplicationStarted;
private boolean mWaitingForReconnect;
private String mSessionId;
@Override
protected void onCreate(Bundle savedInstanceState) {
//for transaltion
SharedPreferences LengPref = getSharedPreferences("language",
MODE_PRIVATE);
String langStr = LengPref.getString("lang", "");
String languageToLoad = langStr;
Locale locale = new Locale(languageToLoad);
Locale.setDefault(locale);
Configuration config = new Configuration();
config.locale = locale;
getBaseContext().getResources().updateConfiguration(config, null);
// for transaltion
super.onCreate(savedInstanceState);
// Configure Cast device discovery
mMediaRouter = MediaRouter.getInstance(getApplicationContext());
mMediaRouteSelector = new MediaRouteSelector.Builder()
.addControlCategory(CastMediaControlIntent.categoryForCast(getResources()
.getString(R.string.app_id))).build();
mMediaRouterCallback = new MyMediaRouterCallback();
.....
}
private class MyMediaRouterCallback extends MediaRouter.Callback {
@Override
public void onRouteSelected(MediaRouter router, MediaRouter.RouteInfo info) {
//Log.d(TAG, "onRouteSelected");
// Handle the user route selection.
mSelectedDevice = CastDevice.getFromBundle(info.getExtras());
launchReceiver();
}
@Override
public void onRouteUnselected(MediaRouter router, MediaRouter.RouteInfo info) {
//Log.d(TAG, "onRouteUnselected: info=" + info);
teardown(false);
mSelectedDevice = null;
}
}
.......
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu items for use in the action bar
MenuInflater inflater = getMenuInflater();
//getMenuInflater().inflate(R.menu.main, menu);
if (workoutTypeFinal == 0) {
inflater.inflate(R.menu.workout_menu, menu);
} else if (workoutTypeFinal == 2 || workoutTypeFinal == 3) {
inflater.inflate(R.menu.workout_menu, menu);
} else {
//ovo je ako je next next tip
inflater.inflate(R.menu.workout_menu_2, menu);
}
MenuItem mediaRouteMenuItem = menu.findItem(R.id.media_route_menu_item);
MediaRouteActionProvider mediaRouteActionProvider
= (MediaRouteActionProvider) MenuItemCompat
.getActionProvider(mediaRouteMenuItem);
// Set the MediaRouteActionProvider selector for device discovery.
mediaRouteActionProvider.setRouteSelector(mMediaRouteSelector);
mOptionsMenu = menu;
return super.onCreateOptionsMenu(menu);
}
.....
@Override
protected void onStop() {
mMediaRouter.removeCallback(mMediaRouterCallback);
super.onStop();
if (hasTimer == true) {
timer5.cancel();
timer2.cancel();
}
if (workoutTypeFinal == 0) {
//inflater.inflate(R.menu.workout_menu, menu);
if (isTimer1 == true) {
timer1.cancel();
//timer5.cancel();
//mp.stop();
} else if (isTimer2 == true) {
timer2.cancel();
timer5.cancel();
if (isMusic == true) {
mp.stop();
} else {
}
} else if (isTimer3 == true) {
timer3.cancel();
timer5.cancel();
mp.stop();
} else if (isTimer4 == true) {
timer4.cancel();
timer5.cancel();
mp.stop();
}
} else if (workoutTypeFinal == 2) {
//inflater.inflate(R.menu.workout_menu, menu);
} else {
//ovo je ako je next next tip
//inflater.inflate(R.menu.workout_menu_2, menu);
}
}
@Override
protected void onPause() {
super.onPause();
//pausedVoid=false;
if (workoutTypeFinal == 0) {
if (pausedVoid == true) {
} else {
pauseTime();
}
} else if (workoutTypeFinal == 2) {
if (pausedVoid == true) {
} else {
pauseTime();
}
//asd
} else {
//ovo je ako je next next tip
}
}
@Override
protected void onDestroy() {
teardown(true);
super.onDestroy();
if (hasTimer == true) {
timer5.cancel();
timer2.cancel();
}
if (workoutTypeFinal == 0) {
//inflater.inflate(R.menu.workout_menu, menu);
if (isTimer1 == true) {
timer1.cancel();
//timer5.cancel();
//mp.stop();
} else if (isTimer2 == true) {
timer2.cancel();
timer5.cancel();
if (isMusic == true) {
mp.stop();
} else {
}
} else if (isTimer3 == true) {
timer3.cancel();
timer5.cancel();
mp.stop();
} else if (isTimer4 == true) {
timer4.cancel();
timer5.cancel();
mp.stop();
}
} else if (workoutTypeFinal == 2) {
//inflater.inflate(R.menu.workout_menu, menu);
if (isTimer1 == true) {
timer1.cancel();
//timer5.cancel();
//mp.stop();
} else if (isTimer2 == true) {
timer2.cancel();
timer5.cancel();
if (isMusic == true) {
mp.stop();
} else {
}
} else if (isTimer3 == true) {
timer3.cancel();
timer5.cancel();
mp.stop();
} else if (isTimer4 == true) {
timer4.cancel();
timer5.cancel();
mp.stop();
}
} else {
//ovo je ako je next next tip
}
}
@Override
protected void onResume() {
super.onResume();
}
........
@Override
protected void onStart() {
super.onStart();
// Start media router discovery
mMediaRouter.addCallback(mMediaRouteSelector, mMediaRouterCallback,
MediaRouter.CALLBACK_FLAG_REQUEST_DISCOVERY);
}
//Chromecast
/**
* Start the receiver app
*/
private void launchReceiver() {
try {
mCastListener = new Cast.Listener() {
@Override
public void onApplicationDisconnected(int errorCode) {
Log.d(TAG, "application has stopped");
teardown(true);
}
};
// Connect to Google Play services
mConnectionCallbacks = new ConnectionCallbacks();
mConnectionFailedListener = new ConnectionFailedListener();
Cast.CastOptions.Builder apiOptionsBuilder = Cast.CastOptions
.builder(mSelectedDevice, mCastListener);
mApiClient = new GoogleApiClient.Builder(this)
.addApi(Cast.API, apiOptionsBuilder.build())
.addConnectionCallbacks(mConnectionCallbacks)
.addOnConnectionFailedListener(mConnectionFailedListener)
.build();
mApiClient.connect();
} catch (Exception e) {
Log.e(TAG, "Failed launchReceiver", e);
}
}
/**
* Google Play services callbacks
*/
private class ConnectionCallbacks implements GoogleApiClient.ConnectionCallbacks {
@Override
public void onConnected(Bundle connectionHint) {
Log.d(TAG, "onConnected");
if (mApiClient == null) {
// We got disconnected while this runnable was pending
// execution.
return;
}
try {
if (mWaitingForReconnect) {
mWaitingForReconnect = false;
// Check if the receiver app is still running
if ((connectionHint != null)
&& connectionHint.getBoolean(Cast.EXTRA_APP_NO_LONGER_RUNNING)) {
Log.d(TAG, "App is no longer running");
teardown(true);
} else {
// Re-create the custom message channel
try {
Cast.CastApi.setMessageReceivedCallbacks(
mApiClient,
mHelloWorldChannel.get_messageBus_round(),
mHelloWorldChannel);
Cast.CastApi.setMessageReceivedCallbacks(
mApiClient,
mHelloWorldChannel.get_messageBus_current_text(),
mHelloWorldChannel);
Cast.CastApi.setMessageReceivedCallbacks(
mApiClient,
mHelloWorldChannel.get_messageBus_current_exercise(),
mHelloWorldChannel);
Cast.CastApi.setMessageReceivedCallbacks(
mApiClient,
mHelloWorldChannel.get_messageBus_current_time(),
mHelloWorldChannel);
} catch (IOException e) {
Log.e(TAG, "Exception while creating channel", e);
}
}
} else {
// Launch the receiver app
Cast.CastApi.launchApplication(mApiClient, getString(R.string.app_id), false)
.setResultCallback(
new ResultCallback<Cast.ApplicationConnectionResult>() {
@Override
public void onResult(
Cast.ApplicationConnectionResult result) {
Status status = result.getStatus();
Log.d(TAG,
"ApplicationConnectionResultCallback.onResult:"
+ status.getStatusCode());
if (status.isSuccess()) {
ApplicationMetadata applicationMetadata = result
.getApplicationMetadata();
mSessionId = result.getSessionId();
String applicationStatus = result
.getApplicationStatus();
boolean wasLaunched = result.getWasLaunched();
Log.d(TAG, "application name: "
+ applicationMetadata.getName()
+ ", status: " + applicationStatus
+ ", sessionId: " + mSessionId
+ ", wasLaunched: " + wasLaunched);
mApplicationStarted = true;
// Create the custom message
// channel
mHelloWorldChannel = new HelloWorldChannel();
try {
Cast.CastApi.setMessageReceivedCallbacks(
mApiClient,
mHelloWorldChannel.get_messageBus_round(),
mHelloWorldChannel);
Cast.CastApi.setMessageReceivedCallbacks(
mApiClient,
mHelloWorldChannel.get_messageBus_current_text(),
mHelloWorldChannel);
Cast.CastApi.setMessageReceivedCallbacks(
mApiClient,
mHelloWorldChannel.get_messageBus_current_exercise(),
mHelloWorldChannel);
Cast.CastApi.setMessageReceivedCallbacks(
mApiClient,
mHelloWorldChannel.get_messageBus_current_time(),
mHelloWorldChannel);
} catch (IOException e) {
Log.e(TAG, "Exception while creating channel",
e);
}
// set the initial instructions
// on the receiver
//Salje Talk to me text
//sendMessage(getString(R.string.instructions),0);
} else {
Log.e(TAG, "application could not launch");
teardown(true);
}
}
});
}
} catch (Exception e) {
Log.e(TAG, "Failed to launch application", e);
}
}
@Override
public void onConnectionSuspended(int cause) {
Log.d(TAG, "onConnectionSuspended");
mWaitingForReconnect = true;
}
}
/**
* Google Play services callbacks
*/
private class ConnectionFailedListener implements
GoogleApiClient.OnConnectionFailedListener {
@Override
public void onConnectionFailed(ConnectionResult result) {
Log.e(TAG, "onConnectionFailed ");
teardown(false);
}
}
/**
* Tear down the connection to the receiver
*/
private void teardown(boolean selectDefaultRoute) {
Log.d(TAG, "teardown");
if (mApiClient != null) {
if (mApplicationStarted) {
if (mApiClient.isConnected() || mApiClient.isConnecting()) {
try {
Cast.CastApi.stopApplication(mApiClient, mSessionId);
if (mHelloWorldChannel != null) {
Cast.CastApi.removeMessageReceivedCallbacks(
mApiClient,
mHelloWorldChannel.get_messageBus_round());
Cast.CastApi.removeMessageReceivedCallbacks(
mApiClient,
mHelloWorldChannel.get_messageBus_current_text());
Cast.CastApi.removeMessageReceivedCallbacks(
mApiClient,
mHelloWorldChannel.get_messageBus_current_exercise());
Cast.CastApi.removeMessageReceivedCallbacks(
mApiClient,
mHelloWorldChannel.get_messageBus_current_time());
mHelloWorldChannel = null;
}
} catch (IOException e) {
Log.e(TAG, "Exception while removing channel", e);
}
mApiClient.disconnect();
}
mApplicationStarted = false;
}
mApiClient = null;
}
if (selectDefaultRoute) {
mMediaRouter.selectRoute(mMediaRouter.getDefaultRoute());
}
mSelectedDevice = null;
mWaitingForReconnect = false;
mSessionId = null;
}
/**
* Send a text message to the receiver
*/
private void sendMessage(String message,int case_) {
if (mApiClient != null && mHelloWorldChannel != null) {
try {
//Salje stranici message od text speacha
if(case_ == 0){
Cast.CastApi.sendMessage(mApiClient, mHelloWorldChannel.get_messageBus_round(), message).setResultCallback(
new ResultCallback<Status>() {
@Override
public void onResult(Status result) {
if (!result.isSuccess()) {
Log.e(TAG, "Sending message failed");
}
}
});
}else if(case_ == 1){
Cast.CastApi.sendMessage(mApiClient, mHelloWorldChannel.get_messageBus_current_text(), message).setResultCallback(
new ResultCallback<Status>() {
@Override
public void onResult(Status result) {
if (!result.isSuccess()) {
Log.e(TAG, "Sending message failed");
}
}
});
}else if(case_ == 2){
Cast.CastApi.sendMessage(mApiClient, mHelloWorldChannel.get_messageBus_current_exercise(), message).setResultCallback(
new ResultCallback<Status>() {
@Override
public void onResult(Status result) {
if (!result.isSuccess()) {
Log.e(TAG, "Sending message failed");
}
}
});
}else if(case_ == 3){
Cast.CastApi.sendMessage(mApiClient, mHelloWorldChannel.get_messageBus_current_time(), message).setResultCallback(
new ResultCallback<Status>() {
@Override
public void onResult(Status result) {
if (!result.isSuccess()) {
Log.e(TAG, "Sending message failed");
}
}
});
}
} catch (Exception e) {
Log.e(TAG, "Exception while sending message", e);
}
} else {
//Toast.makeText(MainActivity.this, message, Toast.LENGTH_SHORT).show();
}
}
/**
* Custom message channel
*/
class HelloWorldChannel implements Cast.MessageReceivedCallback {
/**
* @return custom namespace
*/
public String get_messageBus_round(){
return getString(R.string.messageBus_round);
}
public String get_messageBus_current_text(){
return getString(R.string.messageBus_current_text);
}
public String get_messageBus_current_exercise(){
return getString(R.string.messageBus_current_exercise);
}
public String get_messageBus_current_time(){
return getString(R.string.messageBus_current_time);
}
/*
* Receive message from the receiver app
*/
@Override
public void onMessageReceived(CastDevice castDevice, String namespace,
String message) {
Log.d(TAG, "onMessageReceived: " + message);
}
}
}
最佳答案
问题出在菜单上,菜单应该是这样的:
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
tools:context="com.example.casthelloworld.MainActivity" >
<item
android:id="@+id/media_route_menu_item"
android:title="@string/media_route_menu_title"
app:actionProviderClass="android.support.v7.app.MediaRouteActionProvider"
app:showAsAction="always"/>
</menu>
关于java - 尝试调用虚方法 'void android.support.v7.app.MediaRouteActionProvider.setRouteSelector,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37752643/
作为作业的一部分,我正在尝试创建一个用户级线程库,如 pthreads。 为了处理线程之间的上下文切换,我使用了“swapcontext”函数。在使用它之前,我必须使用“makecontext”函数创
我是一名初级 C++ 程序员,我正在 Linux 机器上编程。 我遇到了这个错误: cannot convert ‘void* (Network::*)(void*)’ to ‘void* (*)(v
我知道,例如 void *(*myFuncName)(void*) 是一个函数指针,它接受并返回 void*。 这是一个有两个参数的指针吗?void 指针是该类型的另一个返回 void* 和 void
所以我被告知它们彼此几乎相同 void function1 (void(func)(int), int arg){ func(arg); } void function2 (void(*fun
我目前正在 GNU Radio 上开发一个 bloc,我想使用一个线程。该线程用于从 UDP 套接字获取数据,因此我可以在我的 GNU Radio 集团中使用它。 “一般工作”功能是执行所有信号和数据
我正在尝试在主函数中创建一个线程并通过我的线程调用另一个类的函数。 在 main.cpp 中: SocketHandler *callserver; pthread_t thread1; pthrea
我正在使用pthread 为我自己实现线程类。所以,我创建了 Thread 类如下: class Thread { public: Thread() { } virtual void*
我收到上述警告并理解它,但就是不知道如何解决它。我的代码在下面,但基本上我所做的是在结构中存储一个函数指针,并在我从 main.c 调用的另一个函数中初始化该结构。当我将代码与默认函数(即 free(
在我的 android 应用程序中,我在 doInBackground 中执行一些操作通过扩展 AsyncTask类(class)。 (我在这个类中执行任何 UI 都没用) 这是正确使用 AsyncT
我在 GNU 编译器集合中使用 C。所以我需要将函数指针传递给一个函数。现在有两种我想要处理的可接受的函数指针原型(prototype): void function(void); 和 void fu
我正在尝试使用“CameraManager”类创建一个新线程,但出现以下错误: cannot convert '*void(CameraManager:: * )(void*) to void*( *
我想构建一个可以隐藏线程创建的“IThread”类。子类实现“ThreadMain”方法并使其自动调用,如下所示: class IThread { public: void BeginThre
我不明白什么 void (**)(void *, const char *) /* ^^ why are there 2 asterisks here? 意思是,它是一个指向函数的指针,但我失败
我必须将“risposta”类型的参数“r”发送到函数 RispostaServer。编译器给我:invalid conversion void*(*)() to void*(*)(void*) 这是
所以我目前正在使用,或者至少正在尝试编写一个利用 this C pthread threadpool library. 的程序 值得注意的是 thpool.h 中的以下函数: int thpool_a
我正在尝试使用 void* 指针将不同的对象存储在一个全局表中。问题是如何取回 void* 对象。如果我有一个公共(public)基类,比如 Object ,我总是可以将 void* 指针存储为 Ob
我是一名 C 程序员(在 linux 上),但现在我有一个关于 C++ 的项目,并且有一个问题。 这里是示例代码 g_action.sa_sigaction = (void(*)(int,siginf
class Scoreget{ private: //some variables public: Scoreget(){ //
这个问题在这里已经有了答案: Is there a difference between foo(void) and foo() in C++ or C? (4 个答案) func() vs fun
我正在尝试使用 SDL 和 SDL_Mixer 为音频创建一个 C++ 应用程序,并且正在尝试遵循 this教程。但是,使用 SDL_Mixer 的 Mix_HookMusicFinished() 不
我是一名优秀的程序员,十分优秀!