Android Studio无法使用我的XML文件

时间:2018-06-28 22:42:00

标签: java xml android-studio textview

这是我的XML文件:

<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@android:id/text2"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:textAppearance="?android:attr/textAppearanceListItemSmall"
    android:gravity="center_vertical"
    android:textColor="@color/abc_primary_text_material_dark"
    android:minHeight="?android:attr/listPreferredItemHeightSmall" />

这是我的适配器代码行:

ArrayAdapter<String> arrayAdapter = new ArrayAdapter<String>(this, android.R.layout.list_white_text, methods);

是的,我确实导入了正确的R,packagename.R!

但是当我尝试使用XML时,就找不到它了!我已经清理了项目并进行了重建,但我不知道还能做什么。

请帮助!谢谢!

0 个答案:

没有答案