2017-07-12 21 views
-3

Error:(22) No resource identifier found for attribute 'aplha' in package 'android'錯誤:(22)未找到在包「機器人」

屬性「APLHA」資源標識符還我想因爲這個我收到紅色R

而且我得到一個第二個錯誤,我想這是因爲這一點,說

"Execution failed for task':app:processDebugResources'.

<?xml version="1.0" encoding="utf-8"?> 
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:tools="http://schemas.android.com/tools" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    > 

    <android.support.v4.view.ViewPager 
     android:id="@+id/view_pager" 
     android:layout_width="match_parent" 
     android:layout_height="match_parent"/> 

    <LinearLayout 
     android:id="@+id/layoutDots" 
     android:layout_width="match_parent" 
     android:layout_height="15dp" 
     android:layout_alignParentBottom="true" 
     android:layout_marginBottom="20dp" 
     android:gravity="center" 
     android:orientation="horizontal"></LinearLayout> 

    <View 
     android:layout_width="match_parent" 
     android:layout_height="1dp" 
     android:aplha=".5" 
     android:layout_above="@+id/layoutDots" 
     android:background="@android:color/white"/> 

    <Button 
    android:id="@+id/btn_next" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:layout_alignParentBottom="true" 
    android:layout_alignParentLeft="true" 
    android:background="@null" 
    android:text="NEXT" 
    android:textColor="@android:color/white"/> 


    <Button 
     android:id="@+id/btn_skip" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_alignParentBottom="true" 
     android:layout_alignParentLeft="true" 
     android:background="@null" 
     android:text="SKIP" 
     android:textColor="@android:color/white"/> 
</RelativeLayout> 
+1

** alpha **拼錯了... –

回答

0

拷貝代碼

<View 
    android:layout_width="match_parent" 
    android:layout_height="1dp" 
    android:alpha=".5" 
    android:layout_above="@+id/layoutDots" 
    android:background="@android:color/white"/> 

<View 
     android:layout_width="match_parent" 
     android:layout_height="1dp" 
     android:aplha=".5" 
     android:layout_above="@+id/layoutDots" 
     android:background="@android:color/white"/> 

在你的代碼中。

alpha拼錯了你的代碼!