Hallo erstmal,
Ich bin grad dabei meine ersten App-schreib-versuche zu tätigen. Nur mit gradle im texteditor geschrieben, weil mein PC zu langsam für AndroidStudio ist. Jetzt habe ich endlich geschafftt eine App mit nen Button der nichts tut zu bauen, und wollte jetzt ganz motiviert das layout direkt mit styles basteln, und bekomme immer so und so ähnliche errors, egal welche attribute ich wie ändern will:
Code
> Android resource linking failed
/PFAD/ZU/MEINER/APP/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values/values.xml:6: AAPT: error: expected dimension enum but got (raw string) match_parrent.
error: failed linking references.
Meine styles und mein layout:
Code: layouts/activity_nav.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<Button
android:id="@+id/button"
style="@style/bigButton"
android:text="@string/button_text"/>
</LinearLayout>
Alles anzeigen
Code: values/styles.xml
<resources>
<style name="bigButton">
<item name="android:layout_width">match_parrent</item>
<item name="android:layout_height">wrap_content</item>
<item name="android:textSize">25sp</item>
</style>
</resources>
Alles anzeigen
Ich hab mir schon echt nen ast abgesucht, aber keine ahnung was das problem ist.
Könnte das irgendwie mit dem gradle plugin zusammenhängen oder so?
danke schonmal,
joel