我正在开发一个应用程序,我希望徽标左对齐,然后在右侧列出类别列表。所以我所拥有的是线性布局中的图像视图中的徽标,然后我也将 ListView 添加到 LinearLayout 以便它们可以在同一个活动中。当我尝试运行它时,我得到了一个意外停止的错误。
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
Commands.setText("Commands");
LinearLayout LL = new LinearLayout(this);
ImageView Logo = (ImageView)findViewById(0x7f020000);
Logo.setImageDrawable(getResources().getDrawable(android.R.drawable.ic_menu_myplaces));
ListView Cats = new ListView(this);
String Categories[] = new String[3];
Categories[0] = "Hardware";
Categories[1] = "Language";
Categories[2] = "Libraries";
ArrayAdapter<String> list = new ArrayAdapter<String>(this, 0, 2, Categories);
Cats.setAdapter(list);
LL.addView(Logo);
LL.addView(Cats);
setContentView(LL);
}
任何帮助,我真的很困惑