どうしてこれなの:
public class HelpTab extends Activity
{
LinearLayout helpLayout; //was changed to LinearLayout helpLayout = new LinearLayout(this);
TextView helpText = new TextView(this);
Button tips = new Button(this);
Button walkThrough = new Button(this);
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
buttonCreator();
setContentView(helpLayout);
}
public void buttonCreator()
{
//Button featuress defined in here (setText("") and adding them to the layout, addView();)
}
プログラムがクラッシュしますか?コードを詳しく調べたのですが、指を置くことができません。また、デバッガーは、新しいページタブを開いたときにソースが見つからないと言って、何が起こっているのかを教えてくれます。