首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > XML SOAP >

android中xml资料注意事项

2012-06-28 
android中xml文件注意事项xml文件android:idTabWidgetandroid:id@android:id/tabsandroid:layout_widt

android中xml文件注意事项
xml文件android:id
<TabWidget
android:id="@android:id/tabs"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="0"
android:background="#ff000000"/>

调用时android:id
tabHost = (TabHost) this.findViewById(android.R.id.tabhost);


xml中android:text一般这样写
<TextView
android:text="正在保存书签..."
android:textColor="#ffffff"
android:textSize="18dip"
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
还有一种写法是android:text="@string/hello"
<TextView
android:text="@string/hello"
android:textColor="#ffffff"
android:textSize="18dip"
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
在values文件夹中string.xml的这行的值
<string name="hello">Hello World, MainActivity!</string>

热点排行