WEB开发网
开发学院手机开发Android 开发 Android UI日志 阅读

Android UI日志

 2010-08-11 11:42:00 来源:WEB开发网   
核心提示:为了以后的参考,记录下:1、自定义样式(style)在values目录下新建styles.xml文件Java代码< ?xml version="1.0" encoding="utf-8"?>< resources>< style name="

为了以后的参考,记录下:

1、自定义样式(style)

在values目录下新建styles.xml文件

Java代码

< ?xml version="1.0" encoding="utf-8"?>

< resources>

< style name="button_style">

< item name="android:textSize">21.0dip

< item name="android:background">@drawable/psi

< /style>

< /resources>

< ?xml version="1.0" encoding="utf-8"?>

< resources>

< style name="button_style">

< item name="android:textSize">21.0dip

< item name="android:background">@drawable/psi

< /style>

< /resources>

在需要使用的地方

Java代码

< Button android:id="@+id/btn2" android:text="喂狗食" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginLeft="10dp" style="@style/button_style"/>

< Button android:id="@+id/btn2" android:text="喂狗食" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginLeft="10dp" style="@style/button_style"/>

就可以了。

如果需要定义,获得焦点和点击效果需要在drawable目录中添加xml文件来描述其中根标签是 在这里定义各种状态所显示的图标就可以了。然后在前面设置android:background的地方使用该资源就可以了。

2、屏幕切换时Activity重启问题(转)

Android中每次屏幕的切换动会重启Activity,为了避免每次切换屏幕方向后重启Activity,首先修改AndroidManifest.xml,在activity标签内加入以下属性:

Java代码

android:configChanges=”orientation|keyboardHidden”

android:configChanges=”orientation|keyboardHidden”

然后再在Activity代码中覆盖onConfigurationChanged函数,代码如下:

Java代码

@Override

public void onConfigurationChanged(Configuration config) {

super.onConfigurationChanged(config);

}

Tags:Android UI 日志

编辑录入:coldstar [复制链接] [打 印]
赞助商链接