izzatothman / sipdroid

Automatically exported from code.google.com/p/sipdroid
GNU General Public License v3.0
0 stars 0 forks source link

Creating my own layout for Supdroid activity #1068

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
Hi,
I have download the open source Supdroid version.
I want to customize the main layout called sipdroid.xml.So i create a new 
layout and i want to attach it to the sipdroid activity.
I modified the original Oncreate method(under Supdroid.java class) like below:
@Override
public void onCreate(Bundle icicle) {
    super.onCreate(icicle);

    requestWindowFeature(Window.FEATURE_NO_TITLE);
    setContentView(R.layout.sipkip);
    introLayout=(LinearLayout )findViewById(R.id.introLayout);
    introLayout.setVisibility(View.GONE);
}
Have you an idea how to accomplish that
Please help. I'm really blocked.

Original issue reported on code.google.com by aymen.me...@gmail.com on 12 Oct 2012 at 10:47

GoogleCodeExporter commented 8 years ago

Original comment by pmerl...@googlemail.com on 3 Dec 2012 at 9:55