Daha düz görünmesi için gölgeyi düğmeden kaldırmak istiyorum.
Şu anda bu var:
Ama bunu istiyorum:
Daha düz görünmesi için gölgeyi düğmeden kaldırmak istiyorum.
Şu anda bu var:
Ama bunu istiyorum:
Yanıtlar:
Başka bir alternatif de
style="?android:attr/borderlessButtonStyle"
burada belgelendiği gibi Düğme xml'nize http://developer.android.com/guide/topics/ui/controls/button.html
Bir örnek
<Button
android:id="@+id/button_send"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/button_send"
android:onClick="sendMessage"
style="?android:attr/borderlessButtonStyle" />
Bunu yapmanın daha kolay bir yolu, bu etiketi düğmenize eklemektir:
android:stateListAnimator="@null"
API seviye 21 veya daha fazlasını gerektirir.
android:stateListAnimator
özelliği kullanmak için geriye dönük uyumluluk var mı?
borderlessButtonStyle
verir, bu da size daha fazla esneklik sağlar.
Deneyin : android:stateListAnimator="@null"
Malzeme tasarım düğmeleri xml düğmesine ekler:
style="@style/Widget.MaterialComponents.Button.UnelevatedButton"
Bunu düğmenizin arka planı olarak kullanmak yardımcı olabilir, rengi ihtiyaçlarınıza göre değiştirin
<?xml version="1.0" encoding="utf-8" ?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="true" >
<shape android:shape="rectangle">
<solid android:color="@color/app_theme_light" />
<padding
android:left="8dp"
android:top="4dp"
android:right="8dp"
android:bottom="4dp" />
</shape>
</item>
<item>
<shape android:shape="rectangle">
<solid android:color="@color/app_theme_dark" />
<padding
android:left="8dp"
android:top="4dp"
android:right="8dp"
android:bottom="4dp" />
</shape>
</item>
</selector>
@ Alt-Cat cevap benim için çalışıyor!
R.attr.borderlessButtonStyle gölge içermiyor.
ve düğme belgesi harika.
Ayrıca, bu stili ikinci yapıcıdaki özel düğmenizde de ayarlayabilirsiniz.
public CustomButton(Context context, AttributeSet attrs) {
this(context, attrs, R.attr.borderlessButtonStyle);
}
Yukarıdaki tüm cevaplar harika, ama başka bir seçenek önereceğim:
<style name="FlatButtonStyle" parent="Base.Widget.AppCompat.Button">
<item name="android:stateListAnimator">@null</item>
<!-- more style custom here -->
</style>
Bir Düğme yerine, bir TextView kullanabilir ve java koduna bir tıklama dinleyicisi ekleyebilirsiniz.
yani
etkinlik düzeninde xml:
<TextView
android:id="@+id/btn_text_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/colorPrimaryDark"
android:text="@string/btn_text"
android:gravity="center"
android:textColor="@color/colorAccent"
android:fontFamily="sans-serif-medium"
android:textAllCaps="true" />
etkinlik java dosyasında:
TextView btnTextView = (TextView) findViewById(R.id.btn_text_view);
btnTextView.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
// handler code
}
});