0
我在我的應用程序中有7到8個按鈕。如何在Android中設置按鈕?
像這樣。
我該怎麼做? 我用過:
LinearLayout ll = (LinearLayout)findViewById(R.id.searchdialog_layout);
ll.setOrientation(0);
Button btn = new Button(context);
btn.setBackgroundDrawable(getResources().getDrawable(R.drawable.bubble_layout));
btn.setPadding(4,0, 4, 0);
btn.setTextSize(14);
btn.setTextColor(Color.BLACK);
btn.setText("bubble" + " x");
ll.addView(btn) ;
但它沒有奏效。
任何人都可以幫忙嗎?
發佈錯誤日誌 – 2010-09-09 14:14:59
定義「沒有工作」。如果您不打算告訴我們您認爲出了什麼問題,我們無法幫助您解決問題。 – CommonsWare 2010-09-09 16:12:30