2017-06-06 87 views
0

對於Android初學者(以及編程)以及Im之後的教程如何使用Material Desing製作Android應用。不幸的是,由於該教程是兩年前製作的,它看起來像Android的新版本已經放棄了我尋找的依賴項(roundIcon)。如何從MD更改爲標準的Android的佈局?Android如何從佈局選項從材質設計更改爲標準Android

下面有我的清單:

<?xml version="1.0" encoding="utf-8"?> 
<manifest xmlns:android="http://schemas.android.com/apk/res/android" 
    package="com.example.gosia.animalsystem" 
    android:versionCode="1" 
    android:versionName="1.0" > 

    <uses-sdk 
     android:minSdkVersion="15" 
     android:targetSdkVersion="23" /> 

    <application 
     android:allowBackup="true" 
     android:icon="@mipmap/ic_launcher" 
     android:label="@string/app_name" 
     android:roundIcon="@mipmap/ic_launcher_round" 
     android:supportsRtl="true" 
     android:theme="@style/AppTheme" > 
     <activity 
      android:name="com.example.gosia.animalsystem.AnimalSystemActivity" 
      android:label="@string/app_name" 
      android:theme="@style/AppTheme.NoActionBar" > 
      <intent-filter> 
       <action android:name="android.intent.action.MAIN" /> 

       <category android:name="android.intent.category.LAUNCHER" /> 
      </intent-filter> 
     </activity> 
    </application> 

</manifest> 
+0

發佈您的gradle文件 –

回答

0

在styles.xml檢查的appTheme。 目前它必須是一個AppCompatTheme

更改爲任何HOLO主題。

希望這會有所幫助。