Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在 XML 布局文件中定义一个占位符,用于Canvas在其中绘制可以平移、缩放、旋转等的文本。这是定义小部件 的正确方法吗?View
Canvas
View
<View android:id="..." ....> </View>
我认为你的方法并不是最优的。你可以试试:
创建自定义视图帽子可以平移、缩放、旋转(扩展视图)并在布局中定义它。例如
<com.example.CustomView android:id="..." ....> </com.example.CustomView>
或者为持有人定义一个布局,稍后将您的视图添加到该持有人。
<RelativeLayout android:id="@+id/holder" .... />
希望这有帮助。