android 设置控件的颜色字体的方法

前端技术 2023/09/08 Android

1.用代码设置控件的颜色:

复制代码 代码如下:

    int b =  getResources().getColor(R.drawable.blue);//得到配置文件里的颜色
    mButton.setTextColor(b);
   
2.设置空间的字体:
方式一:mText.setTypeface(Typeface.createFromAsset(getAssets(),\"fonts/HandmadeTypewriter.ttf\"));//设置字体
   注意:1.保证文件一定是ttf格式;2.放到assets/fonts目录下;3.如果找不到相应的字体不会报错,只是在运行的时候显示不出来
方式二: fontButton.setTypeface(Typeface.defaultFromStyle(Typeface.ITALIC));//用内部支持的方式设置

复制代码 代码如下:

package com.oyzz.ch3_6;

import android.app.Activity;
/*必须引用graphics.Color才能使用Color.*的对象*/
import android.graphics.Color;
import android.graphics.Typeface;

import android.os.Bundle;
import android.view.View;

/*必须引用 widget.Button才能声明使用Button对象*/
import android.widget.Button;

/*必须引用 widget.TextView才能声明使用TestView对象*/
import android.widget.TextView;
public class Ch3_6 extends Activity
{
  private Button mButton;
  private TextView mText;
  private int[] mColors;
  private int colornum;
  private Button fontButton;

  /** Called when the activity is first created. */
  @Override

  public void onCreate(Bundle savedInstanceState)
  {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);

    /*通过findViewById构造器来使用main.xml与string.xml
    中button与textView的参数*/
    mButton=(Button) findViewById(R.id.mybutton);
    mText= (TextView) findViewById(R.id.mytext);
    fontButton=(Button) findViewById(R.id.mybutton1);

    /*声明并构造一整数array来存储欲使用的文字颜色*/
    mColors = new int[]
                      {
    Color.BLACK, Color.RED, Color.BLUE,
    Color.GREEN, Color.MAGENTA, Color.YELLOW
                       };
    colornum=0;
    //得到color.xml文件里的颜色
    int b =  getResources().getColor(R.drawable.blue);//得到配置文件里的颜色
    mButton.setTextColor(b);
    /*使用setOnClickListener让按钮聆听事件*/
    mButton.setOnClickListener(new View.OnClickListener()
    {            
      /*使用onClick让用户点下按钮来驱动变动文字颜色*/
      public void onClick(View v)
      {       
        if (colornum < mColors.length)
        {
          mText.setTextColor(mColors[colornum]);
          colornum++;
        }
        else
          colornum=0;
       } 
    });

    fontButton.setOnClickListener(new Button.OnClickListener() {
  public void onClick(View v) {
   mText.setTypeface(Typeface.createFromAsset(getAssets(),\"fonts/HandmadeTypewriter.ttf\"));//设置字体
   fontButton.setTypeface(Typeface.defaultFromStyle(Typeface.ITALIC));//用内部支持的方式设置
  }
 });
  }
}

本文地址:https://www.stayed.cn/item/22535

转载请注明出处。

本站部分内容来源于网络,如侵犯到您的权益,请 联系我

我的博客

人生若只如初见,何事秋风悲画扇。