Android:抽屉布局的子视图(例如textviews)不会显示textcolor等属性

时间:2014-07-25 05:37:13

标签: android xml drawerlayout

<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/drawer_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".SlidingMenu" >

    <!-- The main content view -->

<!--     <FrameLayout -->
<!--         android:id="@+id/content_frame" -->
<!--         android:layout_width="match_parent" -->
<!--         android:layout_height="match_parent" > -->
<!--     </FrameLayout> -->

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical" >

        <TextView
            android:id="@+id/textView1"
            android:text="TextView" 
            android:text/>                           // Problem Location
    </LinearLayout>

    <ListView
        android:id="@+id/left_drawer"
        android:layout_width="240dp"
        android:layout_height="match_parent"
        android:layout_gravity="right"
        android:background="#00FFCC"
        android:choiceMode="singleChoice"
        android:divider="@android:color/transparent"
        android:dividerHeight="0dp" >
    </ListView>

</android.support.v4.widget.DrawerLayout>

我正在使用DrawerLayout并且我有一个子视图,但是eclipse内容辅助没有显示与之关联的属性,因为外部视图不显示颜色,文本大小,布局边距属性。我可以对它们进行硬编码,但也可以使用,但内容辅助会停止为整个Xml工作。这可能是它背后的原因。这是实际的屏幕截图。

enter image description here

0 个答案:

没有答案