我正在尝试在XML文件中设置两个片段视图。
private static final CsvPreference STANDARD_SKIP_COMMENTS = new CsvPreference.Builder(CsvPreference.STANDARD_PREFERENCE).skipComments(new CommentStartsWith(";")).build();
ICsvBeanReader beanReader = null;
beanReader = new CsvBeanReader(new FileReader(file), MyClass.STANDARD_SKIP_COMMENTS);
问题是@ layout / simple_list_item_activated_1显示为红色。
Java部分如下:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:weightSum="3">
<fragment android:name="com.delta.fragments.HeadlinesFragment"
android:id="@+id/headlines_fragment"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
tools:layout="@layout/simple_list_item_activated_1"/>
<fragment android:name="com.delta.fragments.ArticleFragment"
android:id="@+id/article_fragment"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="2"
tools:layout="@layout/article_fragment" />
</LinearLayout>
答案 0 :(得分:1)
使用android.R.layout.simple_list_item_1
代替android.R.layout.simple_list_item_activated_1
。