Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/android/198.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Android 未找到属性';名称';包装内';com.jobstoday.joie';_Android_Xml - Fatal编程技术网

Android 未找到属性';名称';包装内';com.jobstoday.joie';

Android 未找到属性';名称';包装内';com.jobstoday.joie';,android,xml,Android,Xml,我尝试了一些在线提供的解决方案,但仍然存在。我尝试替换xmlns:android=”http://schemas.android.com/apk/res/android“到xmlns:SplashActivity=”http://schemas.android.com/apk/lib/com.jobstoday.joie,但结果却出现了更多的错误。 错误在第31行 <?xml version="1.0" encoding="utf-8"?> <ScrollView x

我尝试了一些在线提供的解决方案,但仍然存在。我尝试替换xmlns:android=”http://schemas.android.com/apk/res/android“到xmlns:SplashActivity=”http://schemas.android.com/apk/lib/com.jobstoday.joie,但结果却出现了更多的错误。 错误在第31行

  <?xml version="1.0" encoding="utf-8"?>

  <ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:mi="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true"
android:orientation="vertical">

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:gravity="center"
    android:orientation="vertical"
    android:paddingBottom="20dp"
    android:paddingLeft="60dp"
    android:paddingRight="60dp"
    android:paddingTop="20dp">

    <view
        style="@style/Jobs.PageHeader"
        class="mi.StyledTextView"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="Search"
        android:textColor="@color/joie_green"
        android:typeface="serif"
        mi:font="VAGRounded-Bold.ttf" /> <view
        style="@style/EditText.Outline"
        class="mi.StyledEditText"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="@dimen/common_spacing_major"
        android:hint="keyword: job type, company"
        android:typeface="serif"
        mi:font="VAGRounded-Light.ttf"
        mi:name="request"
        mi:property="zone" />

    <view
        android:id="@+id/btn_search"
        style="@style/Button.Red"
        class="mi.StyledButton"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="right"
        android:layout_marginTop="@dimen/common_spacing"
        android:text="@string/search"
        android:typeface="serif"
        mi:font="VAGRounded-Light.ttf" />

    <view
        style="@style/Jobs.BodyText"
        class="mi.StyledTextView"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="@dimen/common_spacing_major_extra"
        android:text="Filter Options"
        android:textColor="@color/black"
        android:typeface="monospace"
        mi:font="VAGRounded-Light.ttf" />

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="@dimen/common_spacing_major"
        android:orientation="horizontal">

        <view
            android:id="@+id/search_region"
            style="@style/EditText.Outline"
            class="mi.StyledDropDown"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:drawableRight="@drawable/ic_arrow_down_tight"
            android:hint="location"
            android:typeface="serif"
            mi:font="VAGRounded-Light.ttf"
            mi:name="request"
            mi:property="region" />

        <ImageButton
            android:id="@+id/imageButton"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:layout_marginLeft="@dimen/common_spacing"
            android:background="@null"
            android:padding="5dp"
            android:src="@drawable/ic_location"
            android:visibility="gone" />
    </LinearLayout>

    <view
        android:id="@+id/search_salary"
        style="@style/EditText.Outline"
        class="mi.StyledDropDown"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="@dimen/common_spacing_text"
        android:drawableRight="@drawable/ic_arrow_down_tight"
        android:hint="hourly salary"
        android:typeface="serif"
        mi:font="VAGRounded-Light.ttf"
        mi:name="request"
        mi:property="salary" />

    <view
        android:id="@+id/search_category"
        style="@style/EditText.Outline"
        class="mi.StyledDropDown"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="@dimen/common_spacing_text"
        android:drawableRight="@drawable/ic_arrow_down_tight"
        android:hint="category"
        android:typeface="serif"
        mi:font="VAGRounded-Light.ttf"
        mi:name="request"
        mi:property="industry" />

</LinearLayout>


Keep
xmlns:android=”http://schemas.android.com/apk/res/android“
。你能发布引起错误的代码吗?请发布代码,不要截图。(将完整视图从第31行发布到…)黑线显示您的包名样式不包含该特定样式,请放置适当的属性和样式以查找资源。