i'm sorry if this question is a repeat. I have a problem:
I have one main_activity with main_layout.xml.
I have a TextView
and SeekBar1
in it.
I added a menu with a custom_dialog_layout
which has a seekbar2.
Dialog
shows that custom_dialog with seek bar.
when doing this:
inflater = (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
view = inflater.inflate(R.layout.resize_dialog,null);
seekbar = (SeekBar)findViewById(R.id.seekBar2);
application force closes.