Android自定义Style实现方法

Android自定义Style实现方法,需要的朋友可以参考一下

styles.xml如下:
[html]

复制代码 代码如下:

 
     
     

      

 
 

main.xml如下:
[html] 

复制代码 代码如下:

    xmlns:tools="http://schemas.android.com/tools" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    tools:context=".MainActivity" > 

            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" /> 

 

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


以上就是Android自定义Style实现方法的详细内容,更多请关注0133技术站其它相关文章!

赞(0) 打赏
未经允许不得转载:0133技术站首页 » 移动