Pass the same View to a function that you are using in the setContentView()
I have the following function: createEl(View view, ....)
I have to go to the same View function I'm using in the:
setContentView(R.layout.activity_main)
.
I tried with:
View view = (View) getLayoutInflater().Inflate (R.layout.activity_main, null);
But it does not work.
How can I do?
java android android-layout layout view
add a comment |
I have the following function: createEl(View view, ....)
I have to go to the same View function I'm using in the:
setContentView(R.layout.activity_main)
.
I tried with:
View view = (View) getLayoutInflater().Inflate (R.layout.activity_main, null);
But it does not work.
How can I do?
java android android-layout layout view
Exactly what happen? Your layout not showing after using that ?
– Piyush
Nov 15 '18 at 12:27
@Piyush: Nothing happens, element is not inserted.
– Paul
Nov 15 '18 at 12:28
1
do you add the view to the layout after you inflate it? can you post more of your code please?
– Nikos Hidalgo
Nov 15 '18 at 12:28
add a comment |
I have the following function: createEl(View view, ....)
I have to go to the same View function I'm using in the:
setContentView(R.layout.activity_main)
.
I tried with:
View view = (View) getLayoutInflater().Inflate (R.layout.activity_main, null);
But it does not work.
How can I do?
java android android-layout layout view
I have the following function: createEl(View view, ....)
I have to go to the same View function I'm using in the:
setContentView(R.layout.activity_main)
.
I tried with:
View view = (View) getLayoutInflater().Inflate (R.layout.activity_main, null);
But it does not work.
How can I do?
java android android-layout layout view
java android android-layout layout view
edited Nov 15 '18 at 13:31
Fantômas
32.7k156390
32.7k156390
asked Nov 15 '18 at 12:25
PaulPaul
142210
142210
Exactly what happen? Your layout not showing after using that ?
– Piyush
Nov 15 '18 at 12:27
@Piyush: Nothing happens, element is not inserted.
– Paul
Nov 15 '18 at 12:28
1
do you add the view to the layout after you inflate it? can you post more of your code please?
– Nikos Hidalgo
Nov 15 '18 at 12:28
add a comment |
Exactly what happen? Your layout not showing after using that ?
– Piyush
Nov 15 '18 at 12:27
@Piyush: Nothing happens, element is not inserted.
– Paul
Nov 15 '18 at 12:28
1
do you add the view to the layout after you inflate it? can you post more of your code please?
– Nikos Hidalgo
Nov 15 '18 at 12:28
Exactly what happen? Your layout not showing after using that ?
– Piyush
Nov 15 '18 at 12:27
Exactly what happen? Your layout not showing after using that ?
– Piyush
Nov 15 '18 at 12:27
@Piyush: Nothing happens, element is not inserted.
– Paul
Nov 15 '18 at 12:28
@Piyush: Nothing happens, element is not inserted.
– Paul
Nov 15 '18 at 12:28
1
1
do you add the view to the layout after you inflate it? can you post more of your code please?
– Nikos Hidalgo
Nov 15 '18 at 12:28
do you add the view to the layout after you inflate it? can you post more of your code please?
– Nikos Hidalgo
Nov 15 '18 at 12:28
add a comment |
1 Answer
1
active
oldest
votes
Your code isn't working because you are using different instances of the layout. Inflate the view and use that in setContentView()
.
Try this
View view = getLayoutInflater().inflate (R.layout.activity_main, null);
setContentView(view);
Now you can use view
the way you want. It would be the same instance which is loaded in the activity.
Thx, this is the only way to do it right? ;)
– Paul
Nov 15 '18 at 12:32
There are other methods to get the loaded view but this should suit you best. see this stackoverflow.com/questions/5273436/…
– Rohit5k2
Nov 15 '18 at 12:36
add a comment |
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%2f53319478%2fpass-the-same-view-to-a-function-that-you-are-using-in-the-setcontentview%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Your code isn't working because you are using different instances of the layout. Inflate the view and use that in setContentView()
.
Try this
View view = getLayoutInflater().inflate (R.layout.activity_main, null);
setContentView(view);
Now you can use view
the way you want. It would be the same instance which is loaded in the activity.
Thx, this is the only way to do it right? ;)
– Paul
Nov 15 '18 at 12:32
There are other methods to get the loaded view but this should suit you best. see this stackoverflow.com/questions/5273436/…
– Rohit5k2
Nov 15 '18 at 12:36
add a comment |
Your code isn't working because you are using different instances of the layout. Inflate the view and use that in setContentView()
.
Try this
View view = getLayoutInflater().inflate (R.layout.activity_main, null);
setContentView(view);
Now you can use view
the way you want. It would be the same instance which is loaded in the activity.
Thx, this is the only way to do it right? ;)
– Paul
Nov 15 '18 at 12:32
There are other methods to get the loaded view but this should suit you best. see this stackoverflow.com/questions/5273436/…
– Rohit5k2
Nov 15 '18 at 12:36
add a comment |
Your code isn't working because you are using different instances of the layout. Inflate the view and use that in setContentView()
.
Try this
View view = getLayoutInflater().inflate (R.layout.activity_main, null);
setContentView(view);
Now you can use view
the way you want. It would be the same instance which is loaded in the activity.
Your code isn't working because you are using different instances of the layout. Inflate the view and use that in setContentView()
.
Try this
View view = getLayoutInflater().inflate (R.layout.activity_main, null);
setContentView(view);
Now you can use view
the way you want. It would be the same instance which is loaded in the activity.
edited Nov 15 '18 at 13:52
ADM
9,002102453
9,002102453
answered Nov 15 '18 at 12:28
Rohit5k2Rohit5k2
14.6k42651
14.6k42651
Thx, this is the only way to do it right? ;)
– Paul
Nov 15 '18 at 12:32
There are other methods to get the loaded view but this should suit you best. see this stackoverflow.com/questions/5273436/…
– Rohit5k2
Nov 15 '18 at 12:36
add a comment |
Thx, this is the only way to do it right? ;)
– Paul
Nov 15 '18 at 12:32
There are other methods to get the loaded view but this should suit you best. see this stackoverflow.com/questions/5273436/…
– Rohit5k2
Nov 15 '18 at 12:36
Thx, this is the only way to do it right? ;)
– Paul
Nov 15 '18 at 12:32
Thx, this is the only way to do it right? ;)
– Paul
Nov 15 '18 at 12:32
There are other methods to get the loaded view but this should suit you best. see this stackoverflow.com/questions/5273436/…
– Rohit5k2
Nov 15 '18 at 12:36
There are other methods to get the loaded view but this should suit you best. see this stackoverflow.com/questions/5273436/…
– Rohit5k2
Nov 15 '18 at 12:36
add a comment |
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%2f53319478%2fpass-the-same-view-to-a-function-that-you-are-using-in-the-setcontentview%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
Exactly what happen? Your layout not showing after using that ?
– Piyush
Nov 15 '18 at 12:27
@Piyush: Nothing happens, element is not inserted.
– Paul
Nov 15 '18 at 12:28
1
do you add the view to the layout after you inflate it? can you post more of your code please?
– Nikos Hidalgo
Nov 15 '18 at 12:28