android自定义组件实现方法_Android

本文实例讲述了android自定义组件实现方法。分享给大家供大家参考。具体如下:

atts.xml:

<?xml version="1.0" encoding="utf-8"?>
<resources>
  <declare-styleable name="TopBar">
    <attr name="titleText" format="string"/>
    <attr name="titleTextSize" format="dimension"/>
    <attr name="titleTextColor" format="color"/>
    <attr name="leftText" format="string"/>
    <attr name="leftBackground" format="reference|color"/>
    <attr name="leftTextColor" format="color"/>
    <attr name="rightText" format="string"/>
    <attr name="rightBackground" format="reference|color"/>
    <attr name="rightTextColor" format="color"/>
  </declare-styleable>
</resources>

TopBar.java:

package com.cd.administrator.mytopbar;
import android.annotation.TargetApi;
import android.content.Context;
import android.content.res.TypedArray;
import android.graphics.drawable.Drawable;
import android.os.Build;
import android.util.AttributeSet;
import android.view.Gravity;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Button;
import android.widget.RelativeLayout;
import android.widget.TextView;
import android.widget.Toast;
/**
 * Created by Administrator on 2015/1/8.
 */
public class TopBar extends RelativeLayout{
  private Button leftButton,rightButton;
  private TextView tvTitle;
  private int leftTextColor;
  private Drawable leftBackground;
  private String leftText;
  private int rightTextColor;
  private Drawable rightBackground;
  private String rightText;
  private int titleTextColor;
  private String titleText;
  private float titleTextSize;
  private LayoutParams leftParams,rightParams,titleParams;
  private topBarClickListener listener;
  public interface topBarClickListener{
    public void leftClick();
    public void rightClick();
  }
  public void setOnTopBarClickListener(topBarClickListener listener){
    this.listener = listener;
  }
  @TargetApi(Build.VERSION_CODES.JELLY_BEAN)
  public TopBar(final Context context, AttributeSet attrs) {
    super(context, attrs);
    TypedArray ta = context.obtainStyledAttributes(attrs,R.styleable.TopBar);
    leftTextColor = ta.getColor(R.styleable.TopBar_leftTextColor,0);
    leftBackground = ta.getDrawable(R.styleable.TopBar_leftBackground);
    leftText = ta.getString(R.styleable.TopBar_leftText);
    rightTextColor = ta.getColor(R.styleable.TopBar_rightTextColor,0);
    rightBackground = ta.getDrawable(R.styleable.TopBar_rightBackground);
    rightText = ta.getString(R.styleable.TopBar_rightText);
    titleTextColor = ta.getColor(R.styleable.TopBar_titleTextColor,0);
    titleTextSize = ta.getDimension(R.styleable.TopBar_titleTextSize,0);
    titleText = ta.getString(R.styleable.TopBar_titleText);
    ta.recycle();
    leftButton = new Button(context);
    rightButton = new Button(context);
    tvTitle = new TextView(context);
    leftButton.setTextColor(leftTextColor);
    leftButton.setBackground(leftBackground);
    leftButton.setText(leftText);
    rightButton.setTextColor(rightTextColor);
    rightButton.setBackground(rightBackground);
    rightButton.setText(rightText);
    tvTitle.setTextColor(titleTextColor);
    tvTitle.setTextSize(titleTextSize);
    tvTitle.setText(titleText);
    tvTitle.setGravity(Gravity.CENTER);
    setBackgroundColor(0xf59563);
    leftParams = new LayoutParams(ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT);
    leftParams.addRule(RelativeLayout.ALIGN_PARENT_LEFT,TRUE);
    addView(leftButton,leftParams);
    rightParams = new LayoutParams(ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT);
    rightParams.addRule(RelativeLayout.ALIGN_PARENT_RIGHT,TRUE);
    addView(rightButton,rightParams);
    titleParams = new LayoutParams(ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.MATCH_PARENT);
    titleParams.addRule(RelativeLayout.CENTER_IN_PARENT,TRUE);
    addView(tvTitle,titleParams);
    leftButton.setOnClickListener(new OnClickListener() {
      @Override
      public void onClick(View v) {
        listener.leftClick();
      }
    });
    rightButton.setOnClickListener(new OnClickListener() {
      @Override
      public void onClick(View v) {
        listener.rightClick();
      }
    });
  }
}

activity_main.xml:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:custom="http://schemas.android.com/apk/res-auto"
  xmlns:tools="http://schemas.android.com/tools"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:paddingLeft="@dimen/activity_horizontal_margin"
  android:paddingRight="@dimen/activity_horizontal_margin"
  android:paddingTop="@dimen/activity_vertical_margin"
  android:paddingBottom="@dimen/activity_vertical_margin" tools:context=".MainActivity">
  <com.cd.administrator.mytopbar.TopBar
    android:id="@+id/topBar"
    android:layout_width="match_parent"
    android:layout_height="40dp"
    custom:leftBackground="@drawable/blue"
    custom:leftText="Back"
    custom:leftTextColor="#ffffff"
    custom:rightBackground="@drawable/blue"
    custom:rightText="More"
    custom:rightTextColor="#ffffff"
    custom:titleTextColor="#121212"
    custom:titleTextSize="15sp"
    custom:titleText="自定义标题">
  </com.cd.administrator.mytopbar.TopBar>
</RelativeLayout>

MainActivity.java:

package com.cd.administrator.mytopbar;
import android.support.v7.app.ActionBarActivity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.widget.Toast;
public class MainActivity extends ActionBarActivity {
  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    TopBar topBar = (TopBar) findViewById(R.id.topBar);
    topBar.setOnTopBarClickListener(new TopBar.topBarClickListener() {
      @Override
      public void leftClick() {
        Toast.makeText(MainActivity.this, "cd--left", Toast.LENGTH_SHORT).show();
      }
      @Override
      public void rightClick() {
        Toast.makeText(MainActivity.this,"cd--right",Toast.LENGTH_SHORT).show();
      }
    });
  }
  @Override
  public boolean onCreateOptionsMenu(Menu menu) {
    // Inflate the menu; this adds items to the action bar if it is present.
    getMenuInflater().inflate(R.menu.menu_main, menu);
    return true;
  }
  @Override
  public boolean onOptionsItemSelected(MenuItem item) {
    // Handle action bar item clicks here. The action bar will
    // automatically handle clicks on the Home/Up button, so long
    // as you specify a parent activity in AndroidManifest.xml.
    int id = item.getItemId();
    //noinspection SimplifiableIfStatement
    if (id == R.id.action_settings) {
      return true;
    }
    return super.onOptionsItemSelected(item);
  }
}

希望本文所述对大家的Android程序设计有所帮助。

以上是小编为您精心准备的的内容,在的博客、问答、公众号、人物、课程等栏目也有的相关内容,欢迎继续使用右上角搜索按钮进行搜索android
自定义组件
android 自定义组件、android 自定义方法、android 实现接口方法、微信小程序自定义组件、office2016自定义组件,以便于您获取更多的相关知识。

时间: 2024-10-08 03:24:27

android自定义组件实现方法_Android的相关文章

android自定义组件实现方法

本文实例讲述了android自定义组件实现方法.分享给大家供大家参考.具体如下: atts.xml: <?xml version="1.0" encoding="utf-8"?> <resources> <declare-styleable name="TopBar"> <attr name="titleText" format="string"/> <

Android自定义Style实现方法_Android

styles.xml如下: [html] 复制代码 代码如下: <resources xmlns:android="http://schemas.android.com/apk/res/android">      <style name="AppBaseTheme" parent="android:Theme.Light">      </style>      <style name="Ap

Android 自定义组件成JAR包的实现方法_Android

Android 自定义组件成JAR包的实现方法,这里对自己实现的Android View 组件进行JAR 包的处理.             在项目开发过程中,我们难免会用到自己去制作自定义的VIEW控件,之后我们别的项目如果需要的话就直接将其复制到对应的项目中使用,虽说这么做是一个解决问题的方法,但毕竟不是很好. 原因是,当我们项目积累越来越多,会发现自定义的控件越来越多,而且这些自定义的控件都是可以重复利用的,这时我们可以想想,如果把这些自定义控件都封装成一个JAR包,然后用一个项目积累起来

Android使用addView动态添加组件的方法_Android

在项目开发中,我们经常需要进行动态添加组件,其中可添加的部分有两项:布局和组件  其中,添加的布局主要有RelativeLayout型(相对布局)的和LinearLayout(线性布局) 添加的组件主要有文本显示框,编辑框,按钮等组件.  下面,就让我们来进行实现: 首先我们创建一个新的项目,删除MainActivity.class中没有的代码,仅留下protected void onCreate(Bundle savedInstanceState)函数往布局文件中添加一个新的组件: 1. ad

Android中用Builder模式自定义Dialog的方法_Android

前言 我们开发人员在实际项目过程中遇到的需求是多种多样的,有时我们要匹配APP自己的设计风格,有时我们会觉得系统的对话框使用起来不够自由,因此自己定义一个适合自己的Dialog是很有必要的. 为什么要用Builder模式 Builder设计模式是一步步创建一个复杂对象的创建型模式,它允许用户在不知道内部构建细节的情况下,可以更精细地控制对象的构造流程.它的优点就在于将对象的构建和表示分离从而解耦.我们都知道Android系统自身的对话框如AlertDialog就采用了Builder模式,因此可见

Android布局——Preference自定义layout的方法_Android

导语:PreferenceActivity是一个方便设置管理的界面,但是对于界面显示来说比较单调,所以自定义布局就很有必要了.本文举例说明在Preference中自定义layout的方法.笔者是为了在设置中插入@有米v4广告条才研究了一晚上的. 正文:首先PreferenceScreen是一个xml文件于res/xml目录下,不属于layout文件.要插入layout,有两种方法. 1.使用Preference的android:@layout属性 1)xml文件中preference的添加 复制

android使用include调用内部组件的方法_Android

本文实例讲述了android使用include调用内部组件的方法.分享给大家供大家参考.具体如下: 例子一: sublayout.xml <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical&

Android实现自定义标题栏的方法_Android

本文要讲自己定义一个标题栏,能加事件.然后可以移值到不同的手机上,基本上不用改什么,调用也很简单 在layout文件夹下,新建一个XML.名字叫做layout_title_bar.xml然后来看看布局: <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"

Android APP使用自定义字体实现方法_Android

android系统内置字体 android 系统本身内置了一些字体,可以在程序中使用,并且支持在xml配置textView的时候进行修改字体的样式.支持字段为android:textStyle ,android:typeface, android:fontFamily,系统内置了normal|bold|italic三种style, 内置了normal,sans,serif,monospace,几种字体(实测这几种字体仅英文有效),typace和fontFamily功能一样. 使用自定义的字体 以