在Android中,Button是一種常用的UI控件,可以通過設(shè)置其屬性來進(jìn)行樣式和行為的定制。以下是一些常見的Button屬性設(shè)置方法:
<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Click me" />
<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@color/colorPrimary"
android:text="Click me" />
Button button = findViewById(R.id.button);
button.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
// 處理點(diǎn)擊事件
}
});
<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Click me"
android:textSize="16sp"
android:textColor="@android:color/white"
android:background="@drawable/button_background"
android:padding="8dp"/>
這些是一些常見的Button屬性設(shè)置方法,可以根據(jù)實(shí)際需求來進(jìn)一步定制Button的外觀和行為。