java - A single line of code destroyed my project. How to repair? -


so before, androidmanifest.xml had part :

...     <application         android:allowbackup="true"         android:icon="@drawable/icon"         android:label="@string/app_name"         android:theme="@style/apptheme" >         <activity ... 

and added line.

...    <application         android:allowbackup="true"         android:icon="@drawable/icon"         android:label="@string/app_name"         android:theme="@style/apptheme"         android:datepickerdialog="@style/customdialogtheme" >         <activity ... 

after pressed run butten, many errors appeared. how looks :

screenshot (link)

if try delete line , run again, android studio undo delete , show same errors. do?

android:datepickerdialog not property of <application />. remove line of code , find right place. in style xml.


Comments

Popular posts from this blog

ios - RestKit 0.20 — CoreData: error: Failed to call designated initializer on NSManagedObject class (again) -

laravel - PDOException in Connector.php line 55: SQLSTATE[HY000] [1045] Access denied for user 'root'@'localhost' (using password: YES) -

java - Digest auth with Spring Security using javaconfig -