TabHost th=(TabHost) findViewById(R.id.tabhost);
th.setup();
TabSpec ts= th.newTabSpec("tag1");
newTabSpec の new の重要性と、newTabSpec のこのコードで th がどのように使用されているか教えてください。
TabHost th=(TabHost) findViewById(R.id.tabhost);
th.setup();
TabSpec ts= th.newTabSpec("tag1");
newTabSpec の new の重要性と、newTabSpec のこのコードで th がどのように使用されているか教えてください。