Android自定义Style实现方法
更新时间:2013年06月05日 09:56:48 作者:
Android自定义Style实现方法,需要的朋友可以参考一下
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
style="@style/testStyle"
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 startActivityForResult()代替方案示例
这篇文章主要为大家介绍了Android startActivityForResult()代替方案示例,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪2023-08-08
Android使用popupWindow仿微信弹出框使用方法
这篇文章主要为大家详细介绍了Android使用popupWindow仿微信弹出框使用方法,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下2022-09-09
在Android环境下WebView中拦截所有请求并替换URL示例详解
这篇文章主要介绍了在Android环境下WebView中拦截所有请求并替换URL示例详解,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧2020-07-07
详解Android中fragment和viewpager的那点事儿
本文主要对Android中fragment和viewpager进行详细介绍,具有一定的参考价值,需要的朋友一起来看下吧2016-12-12
Android ImageView 不显示JPEG图片的问题解决
本篇文章主要介绍了Android ImageView 不显示JPEG图片及Android Studio中如何引用图片资源的相关知识,具有很好的参考价值。下面跟着小编一起来看下吧2017-05-05


最新评论