Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to update two layouts at a time from one single activity class, but its crashing.

Here is what I'm doing:

User can interact with one layout and as soon a s user presses a button a popup comes, this popup is defines via another layout. So I neeed to update the popup layout every time, but while using the findViewById(), it is giving null and I cant modify the view.

What shall I do for this?

share|improve this question
2  
post your code please – Sardor Dushamov Nov 12 '12 at 12:02
1  
Try this . stackoverflow.com/questions/13063902/… – chintan khetiya Nov 12 '12 at 12:05

1 Answer

- You will need to inflate this pop-up layout everytime you press the button.

- You will need that inflate view.findViewById(......);

It will be something like below:

lLay.setOnClickListener(new OnClickListener() {

@Override
public void onClick(View v) {
final Dialog exitDialog = new Dialog(ResetActivity.this,R.style.CustomDialogTheme_new);

v = View.inflate(getApplicationContext(),R.layout.spinnerlikedialog, null);
exitDialog.setContentView(v);

tClosing = (TableRow) v.findViewById(R.id.tableRow_ClosingDateDialog);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.