How to hide/disable Google StreetView in Android studio
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
I have created a simple layout in android studio using only java code so i can embed google street view in Unity. The layout consists of the street view and a button to hide/show the view (CycleStreetView() method). However, this only hides the google watermarks (??) and prevents you from interacting with the street view.
I have tried setting the whole layout invisible. It has the same effect as described above and hides the button as well. I have went through all of the street view's object methods hoping to find something that hides/disables it with no luck. There are only options enabling/disabling gestures, and showing/hinding components within the streetview (street names etc). I am providing the whole script in case I have missed something. You can try the code in android studio by replacing "UnityPlayerActivity" with "AppCompactActivity".
package com.company.project;
import...
public class StreetView extends UnityPlayerActivity {
private static FrameLayout layout;
private static StreetViewPanoramaView mStreetViewPanoramaView;
private static Button backButton;
private static boolean streetFlag;
private static final LatLng SPECTRA = new LatLng(40.5823243, 22.943672);
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
StreetViewPanoramaOptions options = new StreetViewPanoramaOptions();
options.position(SPECTRA);
mStreetViewPanoramaView = new StreetViewPanoramaView(this, options);
backButton=new Button(this);
backButton.setText("Back");
layout=new FrameLayout(this);
addContentView(layout,new LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT));
layout.addView(mStreetViewPanoramaView, new FrameLayout.LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT,Gravity.BOTTOM));
layout.addView(backButton, new FrameLayout.LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT,Gravity.TOP));
Bundle mStreetViewBundle = null;
mStreetViewPanoramaView.onCreate(mStreetViewBundle);
backButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
CycleStreetView();
}
});
}
public static void CycleStreetView(){
if (!streetFlag){
mStreetViewPanoramaView.setVisibility(View.INVISIBLE);
streetFlag = !streetFlag;
}
else {
mStreetViewPanoramaView.setVisibility(View.VISIBLE);
streetFlag = !streetFlag;
}
}
}
First I create a button and the streetview and pass options. Then I create the layout and position the streetview and button. Finally the button listens for the CycleStreetView method. Shouldn't setVisibility(View.INVISIBLE); hide the entire streetview?
java

add a comment |
I have created a simple layout in android studio using only java code so i can embed google street view in Unity. The layout consists of the street view and a button to hide/show the view (CycleStreetView() method). However, this only hides the google watermarks (??) and prevents you from interacting with the street view.
I have tried setting the whole layout invisible. It has the same effect as described above and hides the button as well. I have went through all of the street view's object methods hoping to find something that hides/disables it with no luck. There are only options enabling/disabling gestures, and showing/hinding components within the streetview (street names etc). I am providing the whole script in case I have missed something. You can try the code in android studio by replacing "UnityPlayerActivity" with "AppCompactActivity".
package com.company.project;
import...
public class StreetView extends UnityPlayerActivity {
private static FrameLayout layout;
private static StreetViewPanoramaView mStreetViewPanoramaView;
private static Button backButton;
private static boolean streetFlag;
private static final LatLng SPECTRA = new LatLng(40.5823243, 22.943672);
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
StreetViewPanoramaOptions options = new StreetViewPanoramaOptions();
options.position(SPECTRA);
mStreetViewPanoramaView = new StreetViewPanoramaView(this, options);
backButton=new Button(this);
backButton.setText("Back");
layout=new FrameLayout(this);
addContentView(layout,new LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT));
layout.addView(mStreetViewPanoramaView, new FrameLayout.LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT,Gravity.BOTTOM));
layout.addView(backButton, new FrameLayout.LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT,Gravity.TOP));
Bundle mStreetViewBundle = null;
mStreetViewPanoramaView.onCreate(mStreetViewBundle);
backButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
CycleStreetView();
}
});
}
public static void CycleStreetView(){
if (!streetFlag){
mStreetViewPanoramaView.setVisibility(View.INVISIBLE);
streetFlag = !streetFlag;
}
else {
mStreetViewPanoramaView.setVisibility(View.VISIBLE);
streetFlag = !streetFlag;
}
}
}
First I create a button and the streetview and pass options. Then I create the layout and position the streetview and button. Finally the button listens for the CycleStreetView method. Shouldn't setVisibility(View.INVISIBLE); hide the entire streetview?
java

add a comment |
I have created a simple layout in android studio using only java code so i can embed google street view in Unity. The layout consists of the street view and a button to hide/show the view (CycleStreetView() method). However, this only hides the google watermarks (??) and prevents you from interacting with the street view.
I have tried setting the whole layout invisible. It has the same effect as described above and hides the button as well. I have went through all of the street view's object methods hoping to find something that hides/disables it with no luck. There are only options enabling/disabling gestures, and showing/hinding components within the streetview (street names etc). I am providing the whole script in case I have missed something. You can try the code in android studio by replacing "UnityPlayerActivity" with "AppCompactActivity".
package com.company.project;
import...
public class StreetView extends UnityPlayerActivity {
private static FrameLayout layout;
private static StreetViewPanoramaView mStreetViewPanoramaView;
private static Button backButton;
private static boolean streetFlag;
private static final LatLng SPECTRA = new LatLng(40.5823243, 22.943672);
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
StreetViewPanoramaOptions options = new StreetViewPanoramaOptions();
options.position(SPECTRA);
mStreetViewPanoramaView = new StreetViewPanoramaView(this, options);
backButton=new Button(this);
backButton.setText("Back");
layout=new FrameLayout(this);
addContentView(layout,new LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT));
layout.addView(mStreetViewPanoramaView, new FrameLayout.LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT,Gravity.BOTTOM));
layout.addView(backButton, new FrameLayout.LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT,Gravity.TOP));
Bundle mStreetViewBundle = null;
mStreetViewPanoramaView.onCreate(mStreetViewBundle);
backButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
CycleStreetView();
}
});
}
public static void CycleStreetView(){
if (!streetFlag){
mStreetViewPanoramaView.setVisibility(View.INVISIBLE);
streetFlag = !streetFlag;
}
else {
mStreetViewPanoramaView.setVisibility(View.VISIBLE);
streetFlag = !streetFlag;
}
}
}
First I create a button and the streetview and pass options. Then I create the layout and position the streetview and button. Finally the button listens for the CycleStreetView method. Shouldn't setVisibility(View.INVISIBLE); hide the entire streetview?
java

I have created a simple layout in android studio using only java code so i can embed google street view in Unity. The layout consists of the street view and a button to hide/show the view (CycleStreetView() method). However, this only hides the google watermarks (??) and prevents you from interacting with the street view.
I have tried setting the whole layout invisible. It has the same effect as described above and hides the button as well. I have went through all of the street view's object methods hoping to find something that hides/disables it with no luck. There are only options enabling/disabling gestures, and showing/hinding components within the streetview (street names etc). I am providing the whole script in case I have missed something. You can try the code in android studio by replacing "UnityPlayerActivity" with "AppCompactActivity".
package com.company.project;
import...
public class StreetView extends UnityPlayerActivity {
private static FrameLayout layout;
private static StreetViewPanoramaView mStreetViewPanoramaView;
private static Button backButton;
private static boolean streetFlag;
private static final LatLng SPECTRA = new LatLng(40.5823243, 22.943672);
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
StreetViewPanoramaOptions options = new StreetViewPanoramaOptions();
options.position(SPECTRA);
mStreetViewPanoramaView = new StreetViewPanoramaView(this, options);
backButton=new Button(this);
backButton.setText("Back");
layout=new FrameLayout(this);
addContentView(layout,new LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT));
layout.addView(mStreetViewPanoramaView, new FrameLayout.LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT,Gravity.BOTTOM));
layout.addView(backButton, new FrameLayout.LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT,Gravity.TOP));
Bundle mStreetViewBundle = null;
mStreetViewPanoramaView.onCreate(mStreetViewBundle);
backButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
CycleStreetView();
}
});
}
public static void CycleStreetView(){
if (!streetFlag){
mStreetViewPanoramaView.setVisibility(View.INVISIBLE);
streetFlag = !streetFlag;
}
else {
mStreetViewPanoramaView.setVisibility(View.VISIBLE);
streetFlag = !streetFlag;
}
}
}
First I create a button and the streetview and pass options. Then I create the layout and position the streetview and button. Finally the button listens for the CycleStreetView method. Shouldn't setVisibility(View.INVISIBLE); hide the entire streetview?
java

java

asked Jan 3 at 13:26
GluxableGluxable
417
417
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54023204%2fhow-to-hide-disable-google-streetview-in-android-studio%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54023204%2fhow-to-hide-disable-google-streetview-in-android-studio%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown