* upgrade to AndroidX, upgrade libraries * move to MaterialComponents theme * make sure the compose button looks good everywhere * fix tollbar title/button alignment on tablet * move to new material color theming, consolidate colors and themes * fix build, fix imports * set error on TextInputLayout instead of EditText * fix imports, TootButton when * improve snackbar style * fix task description color
11 lines
No EOL
475 B
XML
11 lines
No EOL
475 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<menu xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
|
<item
|
|
android:id="@+id/action_search"
|
|
android:title="@string/action_search"
|
|
android:icon="@android:drawable/ic_menu_search"
|
|
app:actionViewClass="androidx.appcompat.widget.SearchView"
|
|
android:actionLayout="@layout/search_view"
|
|
app:showAsAction="always" />
|
|
</menu> |