我是Android编程的新手,所以我不知道它是如何工作的。
例如,如果我的所有Buttons
和TextViews
都应该具有属性android:layout_marginTop="10dip"
,那么我怎么能比为每个组件定义它更容易,例如:< / p>
<Button
android:id="..."
...
android:layout_marginTop="10dip">
<TextView
android:id="..."
...
android:layout_marginTop="10dip">
<TextView
android:id="..."
...
android:layout_marginTop="10dip">
...
我在哪里可以找到可以在main.xml
中使用的所有不同标签的文档?
谢谢你的帮助!