『壹』 android 半透明效果怎麼實現的
設置透明效果 大概有三種
1、用android系統的透明效果
Java代碼
android:background="@android:color/transparent"
例如 設置按鈕
Java代碼
<Button android:background="@android:color/transparent"
android:text="@+id/Button01"
android:id="@+id/Button01"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="#ffffff" />
2、用ARGB來控制
Java代碼
半透明<Button android:background="#e0000000" />
透明<Button android:background="#00000000" />
3、設置alpha
Java代碼
View v = findViewById(R.id.content);//找到你要設透明背景的layout 的id
v.getBackground().setAlpha(100);//0~255透明度值
『貳』 Android中按鈕如何設置透明或半透明,求代碼
在main.xml裡面加入如下代碼,就可以Android中按鈕如何設置透明或半透明;
<Button
android:text="@+id/Button01"
android:id="@+id/Button01"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#00000000"
/>
『叄』 android button邊框怎麼去掉
設置為無背景
android:background="@null"
方法二:
將背景改為
android:background="#00000000"
這里00000000為透明
『肆』 Android 當給一個button設置一個透明背景後 文字不見了 怎麼解決
你可以把Button的background屬性設為 「@null」 。 如果字不顯示,就設置下字的顏色textColor
『伍』 請教android怎麼讓控制項背景透明
以Android Studio為例,步驟如下:
1、直接打開相關窗口,在Android-app-res-layout的空白處點擊滑鼠右鍵並選擇New-Layoutresource file。
『陸』 android,按鈕設置為背景透明了,點擊按鈕後,沒有按鈕下去再上來的那個效果了,怎麼解決啊
android:background="#00000000" />
用這個試試看吧,我以前用透明都是用這個屬性。
你我找個按鈕試驗下,你先用這個試試
剛才試驗了下,我的沒為題,估計是你代碼出問題了,列印信息,看看你的BUTTON監聽里有沒有輸出