2010-09-09 101 views
0

我在我的應用程序中有7到8個按鈕。如何在Android中設置按鈕?

像這樣。 alt text

我該怎麼做? 我用過:

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) ; 

但它沒有奏效。

任何人都可以幫忙嗎?

+0

發佈錯誤日誌 – 2010-09-09 14:14:59

+0

定義「沒有工作」。如果您不打算告訴我們您認爲出了什麼問題,我們無法幫助您解決問題。 – CommonsWare 2010-09-09 16:12:30

回答

0
Button btnabout = (Button) findViewById(R.id.btnAbout); 
    btnabout.setOnClickListener(new OnClickListener() 
    { 

     @Override 
     public void onClick(View V) 
     { 
      //do something 
     }//end onClick   
    });//end button 

傳統的創建按鈕的方式

相關問題