`

TextView点击效果(Button)

阅读更多
TextView点击效果

演示的是一个用TextView来定义的一个Button,实现类似TabWidget风格的选项卡。
自定义按钮,这里没有通过Button类或者子类去做派生,而是通过TextView派生出来的。
在这里三个按钮是三个TextView派生类实例,中间的白线,是1px宽的白色矩形,这样就可以做出类似上面的效果。

效果图:
[img]

[/img]

工程结构图:
[img]

[/img]

/res/drawable/background_color.xml  用shape标签自定义一个渐变背景
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" >
    <gradient 
        android:startColor="#FFFFFFFF"
        android:endColor="#FFFFFFFF"
        android:angle="270.0"
        android:centerY="0.3"
        android:centerColor="#FFBDBDBD"
        />
</shape>


res/drawable/button_selector.xml
<?xml version="1.0" encoding="utf-8"?>
<selector
	xmlns:android="http://schemas.android.com/apk/res/android"
	android:constantSize="true">
	<!-- 获得焦点时的背景图片 -->
	<item
		android:state_focused="true">
		<shape>
			<gradient
				android:startColor="#FFE5CF33"
				android:endColor="#FFF1E7A2"
				android:angle="90.0" />
		</shape>
	</item>
	<!-- 设置相应所有事件 -->
	<item
		android:state_enabled="true"
		android:state_pressed="false">
		<shape>
			<gradient
				android:startColor="#FF1B1B1B"
				android:endColor="#FF969696"
				android:angle="90.0" />
		</shape>
	</item>
	<!-- 按钮点击时的背景 -->
	<item
		android:state_enabled="true"
		android:state_pressed="true">
		<shape>
			<gradient
				android:startColor="#FF000000"
				android:endColor="#FF474747"
				android:angle="90.0" />
		</shape>
	</item>
	<item
		android:state_enabled="false"
		android:state_pressed="true">
		<shape>
			<gradient
				android:startColor="#FF000000"
				android:endColor="#FF474747"
				android:angle="90.0" />
		</shape>
	</item>
	<!-- 默认情况下的背景 -->
	<item>
		<shape>
			<gradient
				android:startColor="#FF000000"
				android:endColor="#FF474747"
				android:angle="90.0" />
		</shape>
	</item>
</selector>



res/layout/main.xml,这个是主布局,由自定义的Button和1px的白色矩形组成
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
	xmlns:android="http://schemas.android.com/apk/res/android"
	android:layout_width="fill_parent"
	android:layout_height="fill_parent"
	android:background="@drawable/background_color"
	android:orientation="vertical">

	<LinearLayout
		android:layout_width="fill_parent"
		android:layout_height="10dip" />
	<LinearLayout
		android:layout_width="fill_parent"
		android:layout_height="40dip">
		<com.amaker.testbutton.TextButton
			android:layout_width="fill_parent"
			android:layout_height="fill_parent"
			android:layout_weight="1"
			android:text="饮食"
			android:gravity="center"
			android:background="@drawable/button_selector"
			android:focusable="true"
			android:clickable="true" />
		<View
			android:layout_width="2px"
			android:layout_height="fill_parent"
			android:background="#FFFFFFFF" />
		<com.amaker.testbutton.TextButton
			android:layout_width="fill_parent"
			android:layout_height="fill_parent"
			android:layout_weight="1"
			android:text="旅行"
			android:gravity="center"
			android:background="@drawable/button_selector"
			android:focusable="true"
			android:clickable="true" />
		<View
			android:layout_width="2px"
			android:layout_height="fill_parent"
			android:background="#FFFFFFFF" />
		<com.amaker.testbutton.TextButton
			android:layout_width="fill_parent"
			android:layout_height="fill_parent"
			android:layout_weight="1"
			android:text="体育"
			android:gravity="center"
			android:background="@drawable/button_selector"
			android:focusable="true"
			android:clickable="true" />
	</LinearLayout>

</LinearLayout>


继承自TextView的自定义Button:
package com.amaker.testbutton;

import android.content.Context;
import android.util.AttributeSet;
import android.view.MotionEvent;
import android.view.View;
import android.widget.TextView; 
import android.widget.Toast;

public class TextButton extends TextView {
    public TextButton(Context context)
    {
        super(context);
    }
    public TextButton(Context context, AttributeSet attrs, int defStyle)
    {
        super(context,attrs,defStyle);
    }
    public TextButton(final Context context, AttributeSet attrs)
    {
        this(context,attrs,0);
        this.setOnTouchListener(new OnTouchListener()
        {

            @Override
            public boolean onTouch(View v, MotionEvent event) {
                if(event.getAction()==MotionEvent.ACTION_CANCEL
                        ||event.getAction()==MotionEvent.ACTION_UP
                        ||event.getAction()==MotionEvent.ACTION_OUTSIDE)
                {
                    Toast.makeText(context, "hello", Toast.LENGTH_SHORT).show();
                }
                return false;
            }
            
        });
    }
}


主程序:
package com.amaker.testbutton;

import android.app.Activity;
import android.os.Bundle;

public class MainActivity extends Activity {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
    }
}
  • 大小: 15.6 KB
  • 大小: 30.7 KB
分享到:
评论

相关推荐

    Android有趣的textview与button特效

    本篇文章将深入探讨如何在Android中为TextView和Button添加各种有趣的效果,提升用户界面的吸引力和交互体验。 首先,TextView是显示单行或多行文本的控件。我们可以通过设置不同的属性来实现各种特效。例如: 1. ...

    android Textview 伸缩效果

    标题"android TextView 伸缩效果"所指的就是这种通过点击“更多”按钮来实现TextView文本展开和收缩的功能。 要实现这样的效果,首先需要对TextView的基本属性有所了解。TextView的`maxLines`属性可以限制显示的...

    textview切换效果

    例如,你可以设置一个按钮点击事件,在点击时更改`TextView`的内容: ```java TextView textView = findViewById(R.id.textView); Button button = findViewById(R.id.button); button.setOnClickListener...

    textview 展开收起效果

    此外,还可以使用SpannableString和ClickableSpan来自定义“更多”链接,使其具有点击效果。这样,用户可以直接点击文本中的“更多”来触发展开或收起。 ```java String textWithMore = "这里是一段很长的文本... ...

    Android TextView展开动画效果

    然而,有时我们希望在用户点击时,TextView的内容能以动画效果展开或收缩,为用户提供更好的交互体验。本教程将详细介绍如何实现一个没有使用Animation类的TextView展开动画效果。 首先,我们需要创建一个新的...

    andorid 实现验证码 button中textview的倒计时的效果

    在Android开发中,实现验证码Button中的TextView倒计时效果是一个常见的需求,这通常涉及到界面交互和定时任务的处理。下面将详细介绍如何实现这一功能。 首先,我们创建一个自定义的Button,将TextVIew和Button的...

    Android软件开发之TextView详解源码

    在源码中,TextView会根据这些标记来处理文本,提供丰富的显示效果。 此外,TextView还支持输入法交互,如自动完成、拼写检查和文本选择。源码中的InputConnection接口和Editor类提供了与软键盘交互的机制。理解这...

    TextView中,设置指定部分文字改变颜色,和指定部分文字点击事件

    SpannableStringBuilder spannableStringBuilder = new SpannableStringBuilder("点击我,看效果!"); // 创建一个ClickableSpan对象并覆盖其onClick方法 class ClickableTextSpan extends ClickableSpan { @...

    一个可以用代号处理控件的阴影效果,以及用代号在TextView、EditText、Button等控件设置selector.zip

    本资源“一个可以用代号处理控件的阴影效果,以及用代号在TextView、EditText、Button等控件设置selector.zip”主要涵盖了两个方面的内容:一是如何通过代码实现控件的阴影效果,二是如何为常见的UI组件如TextView、...

    android textview全文和收起

    在处理长文本时,我们经常需要实现类似于微信消息展示的效果,即超过一定行数的文本会显示为“全文”,点击后展开全部内容,再次点击则收起。这个功能在用户界面设计中被称为“折叠/展开”效果,它有助于保持界面...

    textview展开和收起

    然后添加一个`Button`或使用`TextView`作为可点击的“更多”链接。 ```xml &lt;TextView android:id="@+id/textView_content" android:layout_width="wrap_content" android:layout_height="wrap_content" android...

    点击Button弹出下拉菜单

    在Android应用开发中,"点击Button弹出下拉菜单"是一种常见的交互设计,它提高了用户操作的便捷性。实现这一功能通常涉及到多个技术点,包括Button控件的使用、自定义视图、事件监听以及PopupWindow类的应用。下面将...

    可收缩/扩展的TextView

    - 添加动画效果:在TextView切换状态时,可以添加渐变高度的动画,提升用户体验。 - 提供展开/收起的文字提示:根据TextView的状态动态更新按钮的文本。 - 防抖动处理:如果文本内容快速切换,可能需要添加防抖动...

    UI TextView菜单模拟按键

    此外,我们还可以添加点击事件监听器,使得当用户触摸TextView时能触发相应的行为,就像真正的按键一样。使用android:onClick属性或设置OnClickListener可以实现这一功能。 在“底部”(bottom)部分,我们可以放置...

    android垂直滚动的textview,仿跑马灯效果

    最后,为了测试这个效果,你可以创建一个Activity,并在点击按钮时启动或停止滚动: ```java public class MainActivity extends AppCompatActivity { private VerticalScrollTextView scrollingTextView; ...

    Android TextView 控件例子

    在实际项目中,TextView往往与其他组件结合使用,例如与Button配合显示按钮文字,与ImageView组合形成图文并茂的显示效果等。理解并熟练掌握TextView的使用,对于提高Android应用的用户体验至关重要。

    android核心控件使用,button 、ListView、TextView

    本篇文章将详细讲解三个关键的核心控件:Button、ListView和TextView,以及它们在实际开发中的应用。 Button是Android中最基本的按钮控件,用于响应用户的点击事件。它不仅可以显示文本,还可以设置背景图像,通过...

    简单的自定义开关(TextView动态改变位置)

    本篇文章将深入探讨如何基于`TextView`创建一个简单的自定义开关,并将其功能扩展到可作为`Button`使用。我们将关注以下几个核心知识点: 1. **自定义视图**: 自定义视图是通过继承Android提供的基础视图类(如`...

    Android自定义TextView跑马灯效果

    通过onClick事件来实现按钮的点击事件处理,控制跑马灯效果的开始和停止。 7. 跑马灯效果的优化:在这个例子中,通过isStop标志来控制跑马灯效果的停止和开始,避免了资源的浪费。并且,通过currentScrollX变量来...

    android 点击button控制面板layout的显示消息

    本文将详细讲解如何通过点击Button来控制布局(Layout)的显示和消失,以及如何在布局上添加自定义控件,实现类似Dialog效果的功能。 首先,我们来看“android layout的显示消失”。在Android中,布局(Layout)是...

Global site tag (gtag.js) - Google Analytics