TextView 作为按钮

发布于 2024-12-12 05:42:33 字数 860 浏览 0 评论 0原文

有没有办法可以使用 TextView 作为按钮,并有办法在按下状态下更改文本颜色?

我现在正在这样做

TextView

<TextView
    android:id="@+id/ForgotPassword"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="center"
    android:layout_marginLeft="28dp"
    android:layout_marginRight="28dp"
    android:layout_marginTop="10dip"
    android:text="@string/forgot_password"
    android:textColor="#000000"
    android:textSize="7pt" />

Java 代码

    forgotPassword = (TextView) findViewById(R.id.ForgotPassword);
    forgotPassword.setOnClickListener(new OnClickListener() {
        public void onClick(View v) {
            Intent intent = new Intent(LoginActivity.this,
                    SignupActivity.class);
            startActivity(intent);
        }
    });

Is there a way i can use TextView as a button and have a way it changed text color under pressed state ?

i am doing this right now

TextView

<TextView
    android:id="@+id/ForgotPassword"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="center"
    android:layout_marginLeft="28dp"
    android:layout_marginRight="28dp"
    android:layout_marginTop="10dip"
    android:text="@string/forgot_password"
    android:textColor="#000000"
    android:textSize="7pt" />

Java Code

    forgotPassword = (TextView) findViewById(R.id.ForgotPassword);
    forgotPassword.setOnClickListener(new OnClickListener() {
        public void onClick(View v) {
            Intent intent = new Intent(LoginActivity.this,
                    SignupActivity.class);
            startActivity(intent);
        }
    });

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

鸩远一方 2024-12-19 05:42:33

你可以使用这个文件作为textview的textcolor

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
 <item 
  android:state_pressed="true"
  android:color="colorcode" 
 /> <!-- pressed -->    

 <item 
       android:color="colorcode"
 /> <!-- default -->
</selector>

you can use this file as textcolor of textview

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
 <item 
  android:state_pressed="true"
  android:color="colorcode" 
 /> <!-- pressed -->    

 <item 
       android:color="colorcode"
 /> <!-- default -->
</selector>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文