您好,登錄后才能下訂單哦!
在Android中動態添加Button,您需要在Java代碼中創建一個新的Button實例,然后將其添加到布局中
import android.widget.Button;
import android.widget.LinearLayout;
import android.view.ViewGroup.LayoutParams;
onCreate()
)中創建一個新的Button實例:Button myButton = new Button(this);
myButton.setText("點擊我");
myButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
// 在這里處理點擊事件
}
});
main_layout
的LinearLayout,您可以使用以下代碼將按鈕添加到布局中:LinearLayout mainLayout = findViewById(R.id.main_layout);
mainLayout.addView(myButton);
LinearLayout.LayoutParams layoutParams = new LinearLayout.LayoutParams(
LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);
myButton.setLayoutParams(layoutParams);
現在,當您運行應用程序時,您應該會看到一個動態添加的按鈕。請注意,這些代碼示例假定您正在使用基于Activity的應用程序,并且您已經在AndroidManifest.xml中定義了相關的活動。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。