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