2014-03-26 48 views
0

現在我添加了第三個庫到我的android項目,它包含一些資源,定義了字符串,drawables,顏色等。我想從我的Project xml文件中的第三個庫中引用一些資源。許多wasy已被嘗試,而不是工作。任何幫助,可以給我點意見,將不勝感激。如何從XML文件中的第三個庫中引用資源?

例如,參照一個字符串是這樣的:

<TextView 
     android:id="@+id/date_heading" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     app:layout_column="0" 
     app:layout_row="5" 
     android:text="@string/date_heading" 
     android:visibility="gone" 
     style="@style/MessageHeaderDetailsHeadingStyle" /> 

字符串「date_heading」在第三庫已定義。

回答

0

您應該使用該資源的完整路徑,例如com.example.project.date_heading,其中​​是庫的軟件包名稱。

相關問題