2016-03-31 8 views
-1

Ich habe Problem blur Listview Element. Ich habe die Lösung für normales Bild-Bluring gefunden, funktioniert aber nicht für Listview.Android Listview Blur-Effekt für Artikel

ListView Items

+0

Was meinst du damit funktioniert nicht für ListView? Welche Methode nennen Sie und wie wird Ihr Layout aufgebaut? – speedDeveloper

+0

Unschärfe Aktion fordert vor dem Laden Hintergrundbild und ich brauche eine sehr schnelle Lösung, so dass die Elemente schnell scrollen können. – user1214083

+0

Verwenden Sie Farbverlauf ... – Piyush

Antwort

-1

Ich habe es etwas anderes, dass Sie benötigen, nützlich zu sein, hoffen!

<?xml version="1.0" encoding="utf-8"?> 
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="match_parent" 
    android:layout_height="300dp"> 

    <ImageView 
     android:id="@+id/image" 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     android:scaleType="centerCrop"/> 

    <TextView 
     android:id="@+id/nombre_coche" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:layout_gravity="bottom" 
     android:background="@color/background_footer" 
     android:maxLines="1" 
     android:padding="16dp" 
     android:textAppearance="@style/TextAppearance.AppCompat.Subhead" //IMPORTANT FOR YOU 
     android:textColor="@android:color/white" /> 

</FrameLayout> 

shows that

Spanisch Informationen aus zur Verfügung gestellt: http://www.hermosaprogramacion.com/2015/07/tutorial-para-crear-un-gridview-en-android/

AKTUALISIERT

Ich denke, dass android:alpha="0.5" auf TextView Zugabe sollte das tun, was Sie suchen!

+1

OP fragte nach Unschärfe, nicht Alpha. –