我创建了一个RelativeLayout
名为RemoteImageView
.
<com.mypackagepath.RemoteImageView
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<!-- something interesting -->
</com.mypackagepath.RemoteImageView>
我应该一直写吗
<include layout="@layout/remote_image_view" />
当我想把它放在某个地方或者我可以以某种方式写
<com.mypackagepath.RemoteImageView etc="something" />
?