直播軟體原始碼,改變button的背景顏色

zhibo系統開發發表於2022-03-21

直播軟體原始碼,改變button的背景顏色實現的相關程式碼

方法一:在XML中進行更改

<Button
    android:id="@+id/B"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="提交按鈕2"
    android:textColor="@color/white"
    android:textSize="30dp"
    android:backgroundTint="@android:color/background_dark"
    android:layout_marginTop="100dp"
    android:visibility="visible"
    />


重點是這一串程式碼進行更改button背景顏色

android:backgroundTint="@android:color/background_dark"

方法二:在java程式碼中進行引用更改

首先需要進行引用找到設定的id:

Button A = findViewById(R.id.A);
A.setBackgroundColor(getResources().getColor(purple_200));


A代表你在XML中設定的id名字,注意這邊需要不可設定為A.setBackground();因為這是設定Button控制元件的背景顏色,重點在顏色。

以上就是直播軟體原始碼,改變button的背景顏色實現的相關程式碼, 更多內容歡迎關注之後的文章


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69978258/viewspace-2878942/,如需轉載,請註明出處,否則將追究法律責任。

相關文章