「無法解析symbol'android:layout_width'」
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<item name="colorPrimary">@color/primary_color</item>
<item name="colorPrimaryDark">@color/primary_dark_color</item>
</style>
<!-- Style for a category of vocabulary words -->
<style name="CategoryStyle">
<item name="android:layout_width">match_parent</item>
<item name="android:layout_height">@dimens/list_item_height</item>
<item name="android:gravity">center_vertical</item>
<item name="android:padding">16dp</item>
<item name="android:textColor">@android:color/white</item>
<item name="android:textStyle">bold</item>
<item name="android:textAppearance">?android:textAppearanceMedium</item>
</style>
上面一個是styles.xml
文件。 並從第6行到第12行顯示「Cannot resolve symbol'android:layout_width'
」 ..............我想知道問題是什麼?
嘗試更改'layout_width'給它一個角錢如果錯誤去那麼它可能是'match_parent'不允許那裏,因爲父母不知道 – Xenolion
沒有..問題依然存在..... ....它與manifest.xml有什麼關係?我是一個新手在Android ...所以我的問題可能聽起來很愚蠢...... –
不用擔心。但是如果你打算只在一個視圖中使用它,那麼在styles.xml中不需要定義你的完整樣式!轉到該視圖並直接更改! – Xenolion