]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blobdiff - app/src/main/res/layout/save_logcat_dialog.xml
Migrate to AndroidX from the Android Support Library. https://redmine.stoutner.com...
[PrivacyBrowserAndroid.git] / app / src / main / res / layout / save_logcat_dialog.xml
index 6c359bf508415ae3725cd7bc76ea850659b36e94..973055b41cc77b7b90c02d2dbee6ff6f39b57184 100644 (file)
             android:layout_width="match_parent"
             android:orientation="horizontal" >
 
-            <!-- `android.support.design.widget.TextInputLayout` makes the `android:hint` float above the `EditText`. -->
-            <android.support.design.widget.TextInputLayout
+            <!-- The `TextInputLayout` makes the `android:hint` float above the `EditText`. -->
+            <com.google.android.material.textfield.TextInputLayout
                 android:layout_height="wrap_content"
                 android:layout_width="0dp"
                 android:layout_weight="1" >
 
                 <!-- `android:inputType="textUri" disables spell check and places an `/` on the main keyboard. -->
-                <android.support.design.widget.TextInputEditText
+                <com.google.android.material.textfield.TextInputEditText
                     android:id="@+id/file_name_edittext"
                     android:layout_height="wrap_content"
                     android:layout_width="match_parent"
                     android:hint="@string/file_name"
                     android:inputType="textMultiLine|textUri" />
-            </android.support.design.widget.TextInputLayout>
+            </com.google.android.material.textfield.TextInputLayout>
 
             <Button
                 android:id="@+id/browse_button"