Android 之自定义组件

1、如何在一个按钮上放上一张图片?
把按钮和图片套在一个FrameLayout中

<!-- 必须将button和ImageView分别嵌套在两个LinearLayout中才能 实现将图片放在按钮上 -->
   <FrameLayout
    android:orientation="horizontal"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content">
    <LinearLayout
     android:layout_width="wrap_content"
     android:layout_height="wrap_content">
     <Button
      style="@style/menu_btn_style"
      android:id="@+id/fan_us"
      android:text="@string/mainmenu_facebook_fan_us" />
    </LinearLayout>
    <LinearLayout
     android:layout_width="wrap_content"
     android:layout_height="wrap_content">
     <ImageView
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:layout_marginLeft="16dp"
      android:layout_marginTop="13dp"
      android:src="@drawable/facebookicon" />
    </LinearLayout>
   </FrameLayout>
   
   
   
2、如何自定义组件
自定义一个下划线形式的输入框

第一:确定要画多少条下划线
第二:每条线的宽度
第三:下划线的间距

(1)自定义文本输入框
package com.heima.guesswho.util;

import com.heima.android.guesswho.R;

import android.content.Context;
import android.content.res.TypedArray;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Paint;
import android.util.AttributeSet;
import android.widget.EditText;

public class DashlineEditText extends EditText {
 /*
  * 假设下划线总长100个单位,要画7条下划线,每条下划线间距为2个单位
  * 具体算法如下:
  * 每条下划线的长度:(100+2)/7-2
  * for(int i = 0;i<7,i++){
  *     第i条线
  *   x1 = ((100+2)/7)*i
  *   y1 = getHeight()
  *   x2 = ((100+2)/7)*i+(100+2)/7-2
  *   y2 = getHeight()
  * }
  *
  */
 
 private Paint linePaint = new Paint();
 private  int segmentCount = 8;//总共画8条分割线,可以作为默认值
 private  int distance = 5;//每个分割线的间距为4个单位,可以作为默认值
 
 /*
  * 从布局文件中得到对应属性的值
  */
 public DashlineEditText(Context context, AttributeSet attrs) {
  super(context, attrs);
  setBackgroundDrawable(null);//消除文本框效果的作用
  //linePaint.setColor(Color.RED);//设置画笔的颜色
  
  TypedArray array = context.obtainStyledAttributes(attrs, R.styleable.DashLineET);
  segmentCount = array.getInt(R.styleable.DashLineET_segment_count, segmentCount);//从指定属性中拿到对应的值,若没设置,则用默认值
  distance = array.getInt(R.styleable.DashLineET_distance, distance);
  int color = array.getInt(R.styleable.DashLineET_dashline_color, Color.RED);
  linePaint.setColor(color);
 }

 @Override
 protected void onDraw(Canvas canvas) {
  super.onDraw(canvas);
  int width = getWidth();//自定义控件的宽度
  int height = getHeight()-3;//必须减去数才能显示出下划线
  
  //画出每一条下划线
  for(int i = 0; i < segmentCount; i++){
   int oneSegmentWidth = (width+distance)/segmentCount - distance;//每条下划线的长度
   int startX = (segmentCount+distance)*i ;//每条下划线的起点位置
   int stopX = startX+oneSegmentWidth ;//每条下划线的终点位置
   canvas.drawLine(startX, height, stopX, height, linePaint);
  }  
 }
}


(2)布局文件
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
 xmlns:android="http://schemas.android.com/apk/res/android"
 android:orientation="vertical"
 android:layout_width="fill_parent"
 android:layout_height="fill_parent">
 <TextView
  android:layout_width="fill_parent"
  android:layout_height="wrap_content"
  android:text="@string/debug_name" />

 <com.heima.guesswho.util.DashlineEditText
  android:layout_width="100dp"
  android:layout_height="12dp"
  android:text="test" />
</LinearLayout>


定义自定义组件的属性

第一步:在string.xml文件中配置declare-styleable

   <!-- 定义DashLineEditText的属性 -->
 <declare-styleable
  name="DashLineET">
  <attr
   name="segments_cnt"
   format="integer" />
  <attr
   name="distance"
   format="dimension" />
  <attr
   name="dashline_color"
   format="color" />
  <attr
   name="hint_msg"
   format="reference" />
  <attr
   name="hint_color"
   format="color" />
 </declare-styleable>
 
第二步:在自定义组件中复写构造方法,用来获取布局文件中属性的值

 
 /*
  * 从布局文件中得到对应属性的值
  */
 public DashlineEditText(Context context, AttributeSet attrs) {
  super(context, attrs);
  setBackgroundDrawable(null);//消除文本框效果的作用
  //linePaint.setColor(Color.RED);//设置画笔的颜色
  
  TypedArray array = context.obtainStyledAttributes(attrs, R.styleable.DashLineET);
  segmentCount = array.getInt(R.styleable.DashLineET_segment_count, segmentCount);//从指定属性中拿到对应的值,若没设置,则用默认值
  distance = array.getInt(R.styleable.DashLineET_distance, distance);
  int color = array.getInt(R.styleable.DashLineET_dashline_color, Color.RED);
  linePaint.setColor(color);
 }

 


第三步:在使用自定义组件的布局文件中加入命名空间

如xmlns:heima="http://schemas.android.com/apk/res/com.heima.android.guesswho"


heima 为我们使用属性时使用的前缀,相当于使用Android属性时要使用android前缀一样
其中com.heima.android.guesswho,为清单文件标识应用的包名

布局文件如下


<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
 xmlns:android="http://schemas.android.com/apk/res/android"
 xmlns:heima="http://schemas.android.com/apk/res/com.heima.android.guesswho"
 android:orientation="vertical"
 android:layout_width="fill_parent"
 android:layout_height="fill_parent">
 <TextView
  android:layout_width="fill_parent"
  android:layout_height="wrap_content"
  android:text="@string/debug_name" />

 <com.heima.guesswho.util.DashlineEditText
  android:layout_width="100dp"
  android:layout_height="12dp"
  heima:segment_count="10"
  heima:distance="3"
  android:text="test" />
</LinearLayout>
  


 <com.heima.guesswho.util.DashlineEditText
    android:layout_width="210dip"
   heima:segment_count="9"
    heima:distance="4dip"
    heima:dashline_color="@color/font_white"
    android:layout_height="wrap_content"
    android:textColor="#FF0000"
    android:hint="@string/input_name_prompt"
    android:text="" />

转载于:https://www.cnblogs.com/csj007523/archive/2011/07/04/2097510.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/475579.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

职业规划之后,还需要什么?职业规划与职业选择 - 续集

一时的想法写下&#xff0c;竟没想到会有很多的朋友的共鸣&#xff0c;几天前写下了一则文章&#xff1a;职业规划与职业选择 &#xff0c;写的目的只是自己的心得所绘。很多朋友朋友给我的写作提供了宝贵意见&#xff0c;自己以后也会注意的写作的。但是不免有时候是个人的及时…

LeetCode 1223. 掷骰子模拟(DP)

1. 题目 有一个骰子模拟器会每次投掷的时候生成一个 1 到 6 的随机数。 不过我们在使用它时有个约束&#xff0c;就是使得投掷骰子时&#xff0c;连续 掷出数字 i 的次数不能超过 rollMax[i]&#xff08;i 从 1 开始编号&#xff09;。 现在&#xff0c;给你一个整数数组 ro…

聚类分析 - K-means - Python代码实现

算法简介 K-means算法是很典型的基于距离的聚类算法&#xff0c;采用距离作为相似性的评价指标&#xff0c;即认为两个对象的距离越近&#xff0c;其相似度就越大。该算法认为簇是由距离靠近的对象组成的&#xff0c;因此把得到紧凑且独立的簇作为最终目标。 算法过程如下&…

安装“消息队列 (MSMQ)”

在 Windows Server 2008 or Windows Server 2008 R2 上安装消息队列 4 在服务器管理器中&#xff0c;单击“功能”。 在“功能摘要”下的右窗格中&#xff0c;单击“添加功能”。 在生成的窗口中&#xff0c;展开“消息队列”。 展开“消息队列服务”。 单击“目录服务集成…

数据归一化 - MinMaxScaler()/MaxAbsScaler() - Python代码

目录 归一化 数据归一化的背景介绍 MinMaxScaler&#xff1a;归一到 [ 0&#xff0c;1 ] MaxAbsScaler&#xff1a;归一到 [ -1&#xff0c;1 ] 标准化 去均值&#xff0c;方差规模化 归一化 数据归一化的背景介绍 在之前做聚类分析的时候我们发现&#xff0c;聚类的…

LeetCode 673. 最长递增子序列的个数(DP)

1. 题目 给定一个未排序的整数数组&#xff0c;找到最长递增子序列的个数。 示例 1: 输入: [1,3,5,4,7] 输出: 2 解释: 有两个最长递增子序列&#xff0c;分别是 [1, 3, 4, 7] 和[1, 3, 5, 7]。示例 2: 输入: [2,2,2,2,2] 输出: 5 解释: 最长递增子序列的长度是1&#xff0c;…

loadrunner 配置远程监控windows服务器系统资源

今天决定监控远程windows xp上的系统资源&#xff0c;本来以为应该很好连接&#xff0c;在同一个局域网内&#xff0c;结果出了一堆问题&#xff0c;可能是第一次就让我遇到了一个棘手的操作系统&#xff0c;郁闷&#xff01; &#xff08;1&#xff09;保证装有loadrunner的测…

Python数据清洗 - 洗什么?怎么洗?看完就明白了

目录 缺失值处理 删除缺失值 插补缺失值 不处理缺失值 重复值处理 异常值处理 遍历查找异常值&#xff0c;并根据规则调整大小 删除异常值 视为缺失值后进行插补 数据挖掘过程中&#xff0c;采集的原始数据里存在着各种不利于分析与建模工作的因素&#xff0c;比如数…

LeetCode 1090. 受标签影响的最大值(优先队列)

1. 题目 我们有一个项的集合&#xff0c;其中第 i 项的值为 values[i]&#xff0c;标签为 labels[i]。 我们从这些项中选出一个子集 S&#xff0c;这样一来&#xff1a; |S| < num_wanted对于任意的标签 L&#xff0c;子集 S 中标签为 L 的项的数目总满足 < use_limit…

PHP中的get_defined_funciton和get_defined_vars

1 <?php 2 $zongzi "adfasdf"; 3 //将$zongzi作为数组的key,adfasdf作为数组的值返回 4 $val (get_defined_vars()); 5 echo $val[zongzi]; 6 7 8 function zongzi(){ 9 echo "adfads";10 }11 1…

合并数据 - 合并多个Excel文件并转成CSV - Python代码

在工作中&#xff0c;有时候因为部门间的数据权限问题&#xff0c;推送数据的时候往往是通过邮件完成&#xff0c;对于量大的数据&#xff0c;往往会拆成很多个excel发送&#xff0c;到下一个部门导入数据库之前&#xff0c;总是需要先将所有excel合成一个excel&#xff0c;再导…

LeetCode 524. 通过删除字母匹配到字典里最长单词(双指针)

1. 题目 给定一个字符串和一个字符串字典&#xff0c;找到字典里面最长的字符串&#xff0c;该字符串可以通过删除给定字符串的某些字符来得到。 如果答案不止一个&#xff0c;返回长度最长且字典顺序最小的字符串。如果答案不存在&#xff0c;则返回空字符串。 示例 1: 输入…

poj 3748 位操作

#include<iostream> //位运算using namespace std;int main(){int r,x,y; scanf("%x,%d,%d",&r,&x,&y); rr&(~(1<<x)); rr|(1<<y); rr|(1<<(y-1)); rr&(~(1<<(y-2))); printf("%x\…

Python - Excel文件与CSV文件相互转化

Excel文件转化成CSV - pandas #excel文件转化成csv import pandas as pdfileE:\\pythondata\\union\\test_3.xlsx outfileE:\\pythondata\\union\\test_3.csvdef xlsx_to_csv_pd():data_xls pd.read_excel(file, index_col0)data_xls.to_csv(outfile, encodingutf-8)if __nam…

LeetCode 743. 网络延迟时间(最短路径)

文章目录1. 题目2. 解题2.1 弗洛伊德1. 题目 有 N 个网络节点&#xff0c;标记为 1 到 N。 给定一个列表 times&#xff0c;表示信号经过有向边的传递时间。 times[i] (u, v, w)&#xff0c;其中 u 是源节点&#xff0c;v 是目标节点&#xff0c; w 是一个信号从源节点传递到…

SQL Server T-SQL高级查询

SQL Server T-SQL高级查询&#xff08;转&#xff09; 高级查询在数据库中用得是最频繁的&#xff0c;也是应用最广泛的。 基本常用查询 --select select * from student; --all 查询所有 select all sex from student; --distinct 过滤重复 select distinct sex from student…

逻辑回归 - sklearn (LR、LRCV、MLP、RLR)- Python代码实现

目录 LR&#xff08;LogisticRegression&#xff09; - 线性回归 LRCV&#xff08;LogisticRegressionCV &#xff09;- 逻辑回归 MLP&#xff08;MLPRegressor&#xff09; - 人工神经网络 RLR&#xff08;RandomizedLogisticRegression&#xff09;-随机逻辑回归 logisti…

LeetCode 810. 黑板异或游戏(博弈推理)

1. 题目 一个黑板上写着一个非负整数数组 nums[i] 。 小红和小明轮流从黑板上擦掉一个数字&#xff0c;小红先手。 如果擦除一个数字后&#xff0c;剩余的所有数字按位异或运算得出的结果等于 0 的话&#xff0c;当前玩家游戏失败。 (另外&#xff0c;如果只剩一个数字&#x…

[Socket]BSD socket简易入门

介绍 当你进入 UNIX 的神秘世界后&#xff0c;立刻会发现越来越多的东西难以理解。对于大多数人来说&#xff0c;BSD socket 的概念就是其中一个。这是一个很短的教程来解释他们是什么、他们如何工作并给出一些简单的代码来解释如何使用他们。 类比 (什么是 socket &#xff1f…

轻松看懂机器学习十大常用算法 - 基础知识

通过本篇文章可以对机器学习ML的常用算法有个常识性的认识&#xff0c;没有代码&#xff0c;没有复杂的理论推导&#xff0c;就是图解一下&#xff0c;知道这些算法是什么&#xff0c;它们是怎么应用的&#xff0c;例子主要是分类问题。 算法如下&#xff1a; 决策树随机森林算…