🔴 ANDROID PROGRAMMING CHANNEL
3.82K subscribers
417 photos
203 videos
391 files
309 links
🌀Channel :
➡️ https://telegram.me/AndroidStudyChannel
🌀Group :
➡️ https://t.iss.one/+QE5EFwRKmt04NzZk

ادمین تبادل و تبلیغات : @n_h_raad
درخواست آموزش : @developerjavad
ابتدای کانال :
https://t.iss.one/AndroidStudyChannel/5
Download Telegram
Set Color For Button and Save Material Design options:
__________________________________
1️⃣ Don’t set background color for button, because It’ll show solid and without shadow
2️⃣ Add this style to style.xml to your app theme :
3️⃣ <style name="AppTheme.LoginButton" parent="AppTheme">
<item name="colorButtonNormal">#ACACAC </item>
</style>
Or reference to your color.xml file like : @color/colorAccent
4️⃣ Add this attribute to your Button :
android:theme="@style/AppTheme.LoginButton"