我尝试使用一个导航链接获取两张不同的卡来更新其活动标签窗格。 这是我的代码。如您所见,我有一张卡片有行为信息,另一张卡片上有相应的视频。当我点击查看其他行为信息时,我希望视频也能更改(目前没有第二个视频 - 它只是说'东西2号'
.addClass('active')
有没有办法在不使用javascript public void locationPusher(Location currentLocation) {
if (currentLocation != null) {
double lat = currentLocation.getLatitude();
double lon = currentLocation.getLongitude();
Log.e("Lat: ", "" + lat);
Log.e("Long: ", "" + lon);
Double[] data = new Double[]{lat, lon};
FirebaseHelper firebaseHelper = new FirebaseHelper();
firebaseHelper.pushToFirebaseOnLocationUpdate(firebaseUser, data);
}
}
的情况下执行此操作?