手机
当前位置:查字典教程网 >编程开发 >安卓软件开发 >Android自定义Style实现方法
Android自定义Style实现方法
摘要:styles.xml如下:[html]复制代码代码如下:30px#1110CC150dip150dipmain.xml如下:[html]复制...

styles.xml如下:

[html]

复制代码 代码如下:

<resources xmlns:android="http://schemas.android.com/apk/res/android">

<style name="AppBaseTheme" parent="android:Theme.Light">

</style>

<style name="AppTheme" parent="AppBaseTheme">

</style>

<style name="testStyle">

<item name="android:textSize">30px</item>

<item name="android:textColor">#1110CC</item>

<item name="android:width">150dip</item>

<item name="android:height">150dip</item>

</style>

</resources>

main.xml如下:

[html]

复制代码 代码如下:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"

xmlns:tools="http://schemas.android.com/tools"

android:layout_width="match_parent"

android:layout_height="match_parent"

tools:context=".MainActivity" >

<TextView

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:gravity="center"

android:layout_centerHorizontal="true"

android:layout_centerVertical="true"

android:text="@string/hello_world" />

</RelativeLayout>

MainActivity如下:

[java]

复制代码 代码如下:

package com.cn;

import android.os.Bundle;

import android.app.Activity;

/**

* Demo示例:

* 为控件设置自定义的Style

* 步骤:

* 1 在styles.xml文件中自定义一个style

* 在该style中可以预设各种参数.如文字大小,颜色

* 宽,高等等属性

* 2 在布局文件中为控件设置style属性,如:style="@style/testStyle"

*/

public class MainActivity extends Activity {

@Override www.jb51.net

protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.main);

}

}

【Android自定义Style实现方法】相关文章:

android中path的arcTo方法

Android控件系列之Shape使用方法

Android笔记之:在ScrollView中嵌套ListView的方法

Android 用SQLite实现事务的方法

android自动更新软件版本

Android软件开发环境搭建

Android ListView数据绑定显示的三种解决方法

Android图片翻转动画简易实现代码

Android自定义Custom Dialog对话框

Android 设置应用全屏的两种解决方法

精品推荐
分类导航