MohitMaliFtechiz

Results 274 comments of MohitMaliFtechiz

@stefan-inf Thanks for providing the logs. It seems very mysterious behavior on your device as we every time seeing a new error on your device. This time application crashed due...

@Sagar0-0 You should add the title on the existing SearchView's cancel image. We can get the cancel image of `SearchView` and we can add a title on it.

"androidx.appcompat.R.search_close_btn" this is an image view so the title will not work for here, have you pointing to `contentDescripton`? Have you tried to add the `tooltipText` on it?

Try with this code this is working. ```kotlin val closeImage = (searchItem.actionView as SearchView).findViewById(androidx.appcompat.R.id.search_close_btn) if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) { closeImage?.tooltipText = "Clear query" // move this in string.xml file }...

> Do you know the ID of this back button? It is a default toolbar back button. > Also, we should create a common function or anything, which will add...

What is your proposal for a wrapper? How you gonna implement this?

I have not tested it why it is this not working. But it should. > Something like this, but not completely sure SearchView android:layout_width="wrap_content" android:layout_height="match_parent" android:searchIcon="@drawable/ic_search_white_24dp" android:closeIcon="@drawable/ic_clear_white_24dp" /> Looks interesting...

@Sagar0-0, @kelson42 This issue is a subpart of https://github.com/kiwix/kiwix-android/issues/3700, https://github.com/kiwix/kiwix-android/issues/3701 and this issue will automatically fixed by https://github.com/kiwix/kiwix-android/pull/3706 and https://github.com/kiwix/kiwix-android/pull/3707. * For the close icon of search, we have placed...

@Sagar0-0 Here we have two functionalities on this screen. 1. Search entries from the ZIM file. 2. FIND IN Page functionality. this keyboard is mainly used for searching the entries...

@Sagar0-0 We have implemented a feature in our app at https://github.com/kiwix/kiwix-android/issues/2896 that is more relevant for this search IME option so I am closing this ticket as this feature is...