- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试将 TextView
用作 Button
但它无法执行其操作。按下此 TextView 按钮后,应用程序总是停止工作。
我在我的 XML 代码中添加了 android:clickable="true"
和 android:onClick="perform_action"
部分。但是每当我按下按钮时,应用程序就会停止工作。
这是一个 Activity_main.xml 代码(它不包含我试图用作按钮的 TextView):
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/btn1"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity"
tools:visibility="visible">
<Button
android:id="@+id/ok"
android:layout_width="97dp"
android:layout_height="42dp"
android:layout_marginStart="157dp"
android:layout_marginLeft="157dp"
android:layout_marginTop="62dp"
android:layout_marginEnd="157dp"
android:layout_marginRight="157dp"
android:layout_marginBottom="371dp"
android:text="Нэвтрэх"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/etToken" />
<EditText
android:id="@+id/etToken"
android:layout_width="282dp"
android:layout_height="47dp"
android:layout_marginStart="64dp"
android:layout_marginLeft="64dp"
android:layout_marginTop="209dp"
android:layout_marginEnd="65dp"
android:layout_marginRight="65dp"
android:layout_marginBottom="25dp"
android:ems="10"
android:hint="Token-оо оруулаад нэвтэрнэ үү!"
android:inputType="textPassword"
app:layout_constraintBottom_toTopOf="@+id/ok"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
这是我的主要 Activity 。主要 Activity 将用户引导到另一个页面(或 fragment ),其中包含我试图用作按钮的 TextView(就像一个简单的登录部分)。:
package com.example.demo;
import androidx.appcompat.app.AlertDialog;
import androidx.appcompat.app.AppCompatActivity;
import android.content.DialogInterface;
import android.content.Intent;
import android.graphics.Color;
import android.os.Bundle;
import android.text.InputType;
import android.view.Gravity;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Button;
import android.widget.EditText;
import android.widget.PopupWindow;
import android.widget.RelativeLayout;
import android.widget.TextView;
import java.util.Set;
public class MainActivity extends AppCompatActivity {
private EditText txt;
private String token = "123456";
private Button btn, btn1;
private String Anhaaramj_ogoh_ortoo;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
TextView ortoohead = findViewById(R.id.ortoohead);
txt = findViewById(R.id.etToken);
btn = findViewById(R.id.ok);
btn.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
check(txt.getText().toString());
}
});
}
public void showAlert(View view){
AlertDialog.Builder alert1 = new AlertDialog.Builder(this);
alert1.setMessage("Уучлаарай таны оруулсан token буруу байна!")
.setPositiveButton("Дахин оролдох", new
DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialogInterface, int i) {
dialogInterface.dismiss();
}
})
.create();
alert1.show();
}
public void check(String Tkn){
if(Tkn.equals(token)){
Intent intent = new Intent(MainActivity.this, harnaa.class);
txt.setText(null);
startActivity(intent);
}
else{
showAlert(null);
txt.setText(null);
}
}
public void perform_action(View v)
{
TextView tv = findViewById(R.id.ortoohead);
//alter text of textview widget
tv.setText("This text view is clicked");
//assign the textview forecolor
tv.setTextColor(Color.GREEN);
}
此 activity_attention.xml
包含我的 TextView
,这是最后一个 TextView:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/valuebody"
android:layout_width="match_parent"
android:layout_height="20dp"
android:layout_below="@id/valuehead"
android:text="Анхаарамж өгөх болсон шалтгаанаа бичнэ үү?" />
<TextView
android:id="@+id/valuehead"
android:layout_width="match_parent"
android:layout_height="40dp"
android:layout_below="@id/epbody"
android:text="Анхаарамжийн утга:"
android:textColor="#000000"
android:textSize="30dip" />
<TextView
android:id="@+id/epbody"
android:layout_width="match_parent"
android:layout_height="20dp"
android:layout_below="@id/ephead"
android:text="КП-КМ"
android:textSize="15dip" />
<TextView
android:id="@+id/ephead"
android:layout_width="match_parent"
android:layout_height="40dp"
android:layout_below="@id/spbody"
android:text="Дуусах цэг:"
android:textColor="#000000"
android:textSize="30dip" />
<TextView
android:id="@+id/spbody"
android:layout_width="match_parent"
android:layout_height="20dp"
android:layout_below="@id/sphead"
android:text="КМ-ПК"
android:textSize="15dip" />
<TextView
android:id="@+id/sphead"
android:layout_width="match_parent"
android:layout_height="40dp"
android:layout_below="@id/posbody"
android:text="Эхлэх Цэг:"
android:textColor="#000000"
android:textSize="30dip" />
<TextView
android:id="@+id/posbody"
android:layout_width="match_parent"
android:layout_height="20dp"
android:layout_below="@id/poshead"
android:text="Таны байршил"
android:textSize="15dip" />
<TextView
android:id="@+id/poshead"
android:layout_width="match_parent"
android:layout_height="40dp"
android:layout_below="@id/hoorondbody"
android:text="Ажил хийх байршил:"
android:textColor="#000000"
android:textSize="30dip" />
<TextView
android:id="@+id/hoorondbody"
android:layout_width="match_parent"
android:layout_height="20dp"
android:layout_below="@id/hoorondhead"
android:layout_marginTop="2dp"
android:text="Наран-Элгэн-Оорцог-Энгэр"
android:textSize="15dip" />
<TextView
android:id="@+id/hoorondhead"
android:layout_width="match_parent"
android:layout_height="40dp"
android:layout_below="@id/ehlehbody"
android:text="Хоорондын зам:"
android:textColor="#000000"
android:textSize="30dip" />
<TextView
android:layout_width="match_parent"
android:layout_height="20dp"
android:id="@+id/ehlehbody"
android:layout_below="@id/ehlehhead"
android:text="2019/07/25 22:35"
android:textSize="15dip"/>
<TextView
android:id="@+id/ehlehhead"
android:layout_width="match_parent"
android:layout_height="40dp"
android:layout_below="@id/ortoobody"
android:text="Эхлэх огноо:"
android:textColor="#000000"
android:textSize="30dip" />
<TextView
android:id="@+id/ortoobody"
android:layout_width="match_parent"
android:layout_height="20dp"
android:layout_below="@id/ortoohead"
android:text="Өртөөний нэр"
android:textSize="15dip"
android:clickable="true"/>
<TextView
android:id="@+id/ortoohead"
android:layout_width="match_parent"
android:layout_height="40dp"
android:clickable="true"
android:onClick="perform_action"
android:text="Анхаарамж өгөх өртөөд:"
android:textColor="#000000"
android:textSize="30dip" />
<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/valuebody"
android:layout_alignParentEnd="true"
android:layout_alignParentRight="true"
android:layout_marginTop="22dp"
android:layout_marginEnd="36dp"
android:layout_marginRight="36dp"
android:onClick="SetOrtoo"
android:text="Button" />
</RelativeLayout>
最后Attention.java it a Fragment:
package com.example.demo;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import androidx.annotation.Nullable;
import androidx.fragment.app.Fragment;
public class Attention extends Fragment {
@Nullable
@Override
public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
return inflater.inflate(R.layout.activity_attention, container, false);
}
}
最佳答案
当您尝试从 fragment 中单击 TextView
时,您需要像这样实现 -
只需将您的 Attention
fragment 代码替换为以下 fragment 即可。
package com.example.demo;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import androidx.annotation.Nullable;
import androidx.fragment.app.Fragment;
public class Attention extends Fragment {
@Nullable
@Override
public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
return inflater.inflate(R.layout.activity_attention, container, false);
}
@Override
public void onActivityCreated(@Nullable Bundle savedInstanceState) {
super.onActivityCreated(savedInstanceState);
TextView ortooheadTextView = getActivity().findViewById(R.id.ortoohead);
ortooheadTextView.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
Toast.makeText(getActivity(), "TextView clicked.", Toast.LENGTH_LONG).show();
}
});
}
}
关于android - 我将 TextView 用作按钮,但它无法执行其操作。按下按钮后应用程序总是崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57156717/
我有以下查询: SELECT I.InsuranceID FROM Insurance I INNER JOIN JobDetail JD ON I.AccountID = JD.AccountID
我想在 SwiftUI 布局中将此函数用作具有不可变值的模板,但得到错误 Result of call to 'padding' 未使用: func keys (padding: CGFloat, t
直到最近我才使用 View 的标签元素,此后发现了一些很酷的用途。我遇到了一个不寻常的问题,希望有人能回答。这可能比 Android 更通用,但我不确定。它与 Java 如何处理 Integer 类有
这个问题在这里已经有了答案: What is the purpose of the var keyword and when should I use it (or omit it)? (19 个回
我有以下脚本(见下文)。我有两个问题: 1.在 Knockoutjs 的上下文中,下面这行是什么意思? ko.observable(null); 2.如何调用这里尚未定义的函数: that.activ
Java 社区中是否存在一种使用 with-repect-to 在方法中使用多个返回的思想流派,如下所示: public SomeClass someMethod(int someValue) {
我一直在尝试为我的网站创建一个小型社交媒体栏。出于某种原因,我无法计算出我想用来创建 Sprite 的图像无法加载。我还应该提一下,我在背景图像不显示方面遇到过类似的问题。 HTML调用是这样的:
我正在尝试使用 std::pair 枚举值作为 unordered_map 容器的键,但我在定义自定义哈希函数时遇到困难。 我尝试了以下方法: // Enum and pair declaration
我正在学习 JS/JQuery 以及匿名函数和闭包。我见过这样的例子: $('.button').click(function(){ /* Animations */ /* Other
我正在尝试使用菜单列表来浏览我的应用程序。尽管应用程序和路由运行良好,但我使用这段代码在控制台中收到了一些警告: {props.itemList.map((item, index) =>(
我只是想创建一个简单的测试,我在其中使用 DelegateHandlers 来实例化一个 HttpClient 而无需引入 Asp.net Core 包。我有 2 个删除处理程序 Throttling
我是answering another question在这里,用户有一个 ListView与 ItemsSource包含 UserControls .我说我不会推荐它,并被问为什么。 这真的让我很惊
我安装了3.5.2和 3.5.3使用 pyenv 的版本。 # pyenv versions * system (set by /usr/local/pyenv/version) 3.5.2
我正在使用 android studio 制作统一插件,但这里有问题。一些 SDK 提供仅使用 AppcompatActivity 来制作 fragment 但我的MainActivity , 正是
我在 Laravel 中使用 whereHas 来构建查询: })->whereHas('results', function ($query) use ($issued, $mode, $reque
我有一个 5Gb .dat 文件(> 1000 万行)。每行的格式如 aaaa bb cccc0123 xxx kkkkkkkkkkkkkk或 aaaaabbbcccc01234xxxkkkkkkkk
我有一个消费者类,它采用 NSInputStream 作为参数,它将被异步处理,并且我想推送来自生产者类的数据,该生产者类要求它提供 NSOutputStream 作为其输出源。现在我如何设置一个缓冲
我正在尝试使用 ENVs在 Symfony2 中设置我的参数。标量值很简单,但我有一些参数是数组,我需要使用 ENV 以某种方式设置它们。 有问题的参数: parameters: redis.se
在我的类作业中,我已经成功地做到了这一点,但只是在非常简单的程序中。今天,我有一个更复杂的程序,在我将 DEBUG 定义为一个符号后,Eclipse 做了可怕的笨拙的事情,并且在我删除定义后这些可怕的
我目前有 2 个复选框类别、一个下拉列表和一个表单中的提交按钮。该按钮应保持“禁用”状态,直到选中 A 类的一个复选框和选中 B 类选项之一并选择选择列表中的一个选项。它适用于复选框(当我在没有列表的
我是一名优秀的程序员,十分优秀!