Multiple annotations found at this line:
- Consider replacing android:paddingLeft with android:paddingStart="5dp" to better support
right-to-left layouts
- When you define paddingLeft you should probably also define paddingRight for right-to-left
symmetry
在我的xml文件中我得到了這種類型的錯誤爲什麼發生這種情況任何人都知道爲什麼會發生這種情況。android:paddingLeft給出了錯誤?
這裏是我的xml文件
在該行發現<LinearLayout
android:id="@+id/titles"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:paddingLeft="10dp" // here am getting that error
android:paddingTop="10dp" >
<TextView
android:id="@+id/productTitle"
style="@style/darkGreyMediumText14"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:maxLines="3"
android:scrollHorizontally="true"
android:text="Samsung " />
/>
但它給出了一個錯誤,它沒有讓我們運行應用程序。 – 2014-10-10 14:01:18