文章列表
免费下载地址:
http://www.xun6.net/file/80609db25/iReport%E4%B8%AD%E6%96%87%E6%95%99%E7%A8%8B.doc.html
免费下载地址:
http://www.xun6.net/file/4333a6725/C%E8%AF%AD%E8%A8%80%E7%A8%8B%E5%BA%8F%E8%AE%BE%E8%AE%A1.pdf.html
免费下载地址:
http://www.xun6.net/file/705ead640/Shell%E8%84%9A%E6%9C%AC%E5%AD%A6%E4%B9%A0%E6%8C%87%E5%8D%97.pdf.html
免费下載地址:http://www.xun6.net/file/693bb7940/Ajax%E5%9F%BA%E7%A1%80%E6%95%99%E7%A8%8B.pdf.html
指定样式:style="@style/DavidStyleText1"
<TextView
style="@style/DavidStyleText1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center_vertical|center_horizontal"
android:text="@string/ ...
DisplayMetrics dm = new DisplayMetrics();
getWindowManager().getDefaultDisplay().getMetrics(dm);
String strOpt = "手机屏幕分辨率为:"+dm.widthPixels+"×"+dm.heightPixels;
mTextView02 = (TextView)this.findViewById(R.id.myTextView02);
mTextView02.setText(strOpt);
1、android:background="@drawable/white"
<TextView
android:id="@+id/myTextView02"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/str_textview02"
android:background="@drawable/wh ...
Drawable就是一个可画的对象,其可能是一张位图(BitmapDrawable),也可能是一个图形(ShapeDrawable),还有可能是一个图层(LayerDrawable),我们根据画图的需求,创建相应的可画对象。
android:textColor="@drawable/darkgray"
<TextView
android:id="@+id/widget28"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/str_id"
android:textColor="@drawable/darkgray"
android:layou ...
android:background="@drawable/white"
<AbsoluteLayout
android:id="@+id/widget35"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/white"
xmlns:android="http://schemas.android.com/apk/res ...
mTextView01 = (TextView)this.findViewById(R.id.myTextView01);
String str_2 = "欢迎来到Andorid的TextView世界...";
mTextView01.setText(str_2);
目录描述
bin:启动和关闭JBoss 的脚本
client: 客户端与JBoss 通信所需的Java 库(JARs)
docs: 配置的样本文件(数据库配置等)
docs/dtd: 在JBoss 中使用的各种XML 文件的DTD。
lib: 一些JAR,JBoss 启动时加载,且被所有JBoss 配置共享。(不要把你的库放在这里)
server: 各种JBoss 配置。每个配置必须放在不同的子目录。子目录的名字表示配置的名字。
JBoss: 包含3 个默认的配置:minimial,default 和all,在你安装时可以进行选择。
server/all: JBoss 的完全配置,启动所有服务, ...
<c:choose>
<c:when test="${param.action=='changeLanguage'}"><jsp:forward page="install/install_change_language.jsp"/></c:when>
<c:when test="${param.action=='license'}"><jsp:forward page="install/install.jsp"/></c:when ...