Android自定义Style实现方法

来源:爱站网时间:2019-04-25编辑:网友分享
关于Android自定义Style实现方法你了解吗?如果还在困惑当中,那正好,这篇文章刚好能替你解忧,在文章,我们爱站技术小编附上了最为详细的代码给到各位,希望能与君共勉,一起学习。

关于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.aizhan.com
    protected void onCreate(Bundle savedInstanceState) { 
        super.onCreate(savedInstanceState); 
        setContentView(R.layout.main); 
    } 

以上就是Android自定义Style实现方法,如果大家想了解更多关于Android的相关内容,请持续关注爱站技术频道。

上一篇:Android实现横屏的代码和思路

下一篇:Android引导界面的实现方法

您可能感兴趣的文章

相关阅读

热门软件源码

最新软件源码下载