当前位置: 代码迷 >> Android >> error: No resource identifier found for attribute 'paddingEnd' in packag解决思路
  详细解决方案

error: No resource identifier found for attribute 'paddingEnd' in packag解决思路

热度:11   发布时间:2016-04-28 05:00:08.0
error: No resource identifier found for attribute 'paddingEnd' in packag
android4.4不包错,改为android4.1.2报如下错误:
error: No resource identifier found for attribute 'paddingEnd' in package  

layout里
     <TextView android:id="@+id/totalTimeText"
            android:textSize="14sp"
            android:textStyle="bold"
            android:paddingTop="4dp"
            android:paddingEnd="4dp"
            android:layout_gravity="center_horizontal"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:paddingStart="4dp"
            android:text="@string/placeholder_media_time"
            />
这个是什么原因?怎么修改呀?
------解决方案--------------------
paddingEnd 是从4.2.2开始才有的,用paddingLeft, paddingRight ?
  相关解决方案