aboutsummaryrefslogblamecommitdiff
path: root/app/src/main/res/layout/item_recent_search_query.xml
blob: 97dc362791ad5b65a90ca3ec392c6aea9043d713 (plain) (tree)
1
2
3
4
5
6
7
8
9
                                      

                                                                                                             

                                        
                               

                            
                                              
 

                                           
                                            
                                       
 



                                                                                    



                                             









                                                                                          
                                          






                                                  
                                                           

                   
 
                                                    
<?xml version="1.0" encoding="utf-8"?>
<com.google.android.material.card.MaterialCardView xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    app:cardCornerRadius="12dp"
    android:clickable="true"
    android:focusable="true"
    style="?attr/materialCardViewFilledStyle">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical">

        <TextView
            android:id="@+id/recent_search_query_text_view_item_recent_search_query"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginTop="16dp"
            android:layout_marginBottom="4dp"
            android:layout_marginStart="16dp"
            android:layout_marginEnd="16dp"
            android:fontFamily="?attr/font_family"
            android:textSize="?attr/font_default"
            android:singleLine="true"
            android:ellipsize="marquee"
            android:marqueeRepeatLimit="marquee_forever" />

        <TextView
            android:id="@+id/recent_search_query_where_text_view_item_recent_search_query"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginTop="4dp"
            android:layout_marginBottom="16dp"
            android:layout_marginStart="16dp"
            android:layout_marginEnd="16dp"
            android:fontFamily="?attr/font_family"
            android:textSize="?attr/font_default"
            android:singleLine="true"
            android:ellipsize="marquee"
            android:marqueeRepeatLimit="marquee_forever" />

    </LinearLayout>

</com.google.android.material.card.MaterialCardView>