当前位置: 首页 > 知识库问答 >
问题:

无法使EditText多行

长孙明知
2023-03-14

我正在制作一个用于存储笔记的Android应用程序。在单击按钮之前,我已使editText的行为类似于textView。单击edit按钮可使editText取值。现在,当我保存该值并将其显示时,问题就出现了。EditText不是我想要的多行,而是一行。

我在xml文件中将editText的inputType属性声明为多行,但在初始化editText的代码中,我将其inputType属性设置为null,试图使其同时为null和多行,但唉!它不会发生。

下面是我的xml和java代码:

XML

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 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:layout_width="match_parent"
android:layout_height="match_parent"


<android.support.v7.widget.Toolbar
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    app:theme="@style/AppTheme.AppBarOverlay"
    android:background="@color/colorToolBar"
    android:id="@+id/idToolbarNoteDetails"
    android:padding="10dp"/>


<android.support.design.widget.FloatingActionButton
    android:layout_width="wrap_content"
    android:layout_height="match_parent"
    android:id="@+id/idFloatingActionButtonEdit"
    android:layout_alignParentBottom="true"
    android:layout_alignParentRight="true"
    app:srcCompat="@android:drawable/ic_menu_edit"
    android:layout_margin="20dp"/>

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Colors: "
    android:textStyle="italic"
    android:visibility="invisible"
    android:id="@+id/idTextViewColors"
    android:layout_below="@+id/idToolbarNoteDetails"
    android:layout_margin="10dp"
    android:textSize="15dp"/>

<TextView
    android:layout_width="25dp"
    android:layout_height="25dp"
    android:id="@+id/idColorRed"
    android:visibility="invisible"
    android:layout_margin="10dp"
    android:layout_below="@+id/idToolbarNoteDetails"
    android:layout_toRightOf="@+id/idTextViewColors"
    android:background="@drawable/textview_circle_red" />

<TextView
    android:layout_width="25dp"
    android:layout_height="25dp"
    android:visibility="invisible"
    android:id="@+id/idColorBlue"
    android:layout_margin="10dp"
    android:layout_below="@id/idToolbarNoteDetails"
    android:layout_toRightOf="@+id/idColorRed"
    android:background="@drawable/textview_circle_blue"/>

<TextView
    android:layout_width="25dp"
    android:layout_height="25dp"
    android:id="@+id/idColorGreen"
    android:visibility="invisible"
    android:layout_margin="10dp"
    android:layout_below="@id/idToolbarNoteDetails"
    android:layout_toRightOf="@+id/idColorBlue"
    android:background="@drawable/textview_circle_green"/>

<EditText
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_below="@+id/idTextViewColors"
    android:layout_margin="10dp"
    android:inputType="textShortMessage"
    android:background="@android:color/transparent"
    android:textSize="40sp"
    android:hint="Title"
    android:textStyle="bold"
    android:id="@+id/idEditTextTitle"/>

<EditText
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_below="@+id/idEditTextTitle"
    android:hint="Content"
    android:inputType="textMultiLine"
    android:lines="5"
    android:gravity="top|left"
    android:layout_margin="10dp"
    android:textSize="20sp"
    android:background="@android:color/transparent"
    android:id="@+id/idEditTextContent"/>

<EditText
    android:layout_width="250dp"
    android:id="@+id/idEditTextTag"
    android:layout_height="35dp"
    android:hint="#TAG"
    android:background="@android:color/transparent"
    android:layout_alignParentBottom="true"
    android:textSize="15dp"
    android:textStyle="italic"
    android:layout_margin="10dp"/>

<android.support.design.widget.FloatingActionButton
    android:layout_width="wrap_content"
    android:layout_height="match_parent"
    android:id="@+id/idFloatingActionButtonSave"
    android:layout_above="@+id/idFloatingActionButtonEdit"
    android:layout_margin="20dp"
    android:visibility="invisible"
    app:srcCompat="@android:drawable/ic_menu_save"
    android:layout_alignParentRight="true"/>

JAVA的

package mynotes.pawanjotsingh.com.mynotes.activities;

import android.content.Intent;
import android.graphics.Color;
import android.support.design.widget.FloatingActionButton;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.support.v7.widget.Toolbar;
import android.text.InputType;
import android.view.View;
import android.view.animation.Animation;
import android.view.animation.AnimationUtils;
import android.widget.EditText;
import android.widget.TextView;
import android.widget.Toast;

import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.Locale;

import mynotes.pawanjotsingh.com.mynotes.R;
import mynotes.pawanjotsingh.com.mynotes.adapters.RecyclerAdapter;
import mynotes.pawanjotsingh.com.mynotes.dbhelper.DataBaseHelper;
import mynotes.pawanjotsingh.com.mynotes.models.NoteModel;

public class NoteDetailsActivity extends AppCompatActivity {

enum Colors{RED, BLUE, GREEN, WHITE}

DataBaseHelper  dataBaseHelper;
FloatingActionButton floatingActionButtonEdit,floatingActionButtonSave;
EditText editTextTitle,editTextContent,editTextTag;
String stringTitle,stringContent,stringTag;
TextView textViewColors,textViewRed,textViewBlue,textViewGreen;
Toolbar toolbar;
int color,colorRed,colorBlue,colorGreen;

String id="";

Colors currentBackgroundColour = Colors.WHITE;


@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_note_details);

    editTextTitle=(EditText) findViewById(R.id.idEditTextTitle);
    editTextTitle.setInputType(InputType.TYPE_NULL);

    editTextContent=(EditText) findViewById(R.id.idEditTextContent);
    editTextContent.setInputType(InputType.TYPE_NULL);

    editTextTag=(EditText) findViewById(R.id.idEditTextTag);
    editTextTag.setInputType(InputType.TYPE_NULL);

    toolbar=(Toolbar) findViewById(R.id.idToolbarNoteDetails);
    setSupportActionBar(toolbar);
    getSupportActionBar().setDisplayHomeAsUpEnabled(true);
    getSupportActionBar().setTitle("Edit");

    toolbar.setNavigationOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            onBackPressed();
        }
    });

    dataBaseHelper=new DataBaseHelper(this);

    textViewColors=(TextView) findViewById(R.id.idTextViewColors);
    textViewRed=(TextView) findViewById(R.id.idColorRed);
    textViewBlue=(TextView) findViewById(R.id.idColorBlue);
    textViewGreen=(TextView) findViewById(R.id.idColorGreen);

    colorRed=Color.parseColor("#FE7676");
    colorBlue=Color.parseColor("#76FEEC");
    colorGreen=Color.parseColor("#99FE76");

    stringTitle=getIntent().getStringExtra("text_title");
    stringContent=getIntent().getStringExtra("text_content");
    stringTag=getIntent().getStringExtra("text_tag");
    id = getIntent().getStringExtra("id");
    color=getIntent().getIntExtra("color", Color.WHITE);
    getWindow().getDecorView().setBackgroundColor(color);


    editTextTitle.setText(stringTitle);
    editTextContent.setText(stringContent);
    editTextTag.setText(stringTag);


    floatingActionButtonSave=(FloatingActionButton) findViewById(R.id.idFloatingActionButtonSave);
    floatingActionButtonSave.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
           save();
        }
    });


    floatingActionButtonEdit=(FloatingActionButton) findViewById(R.id.idFloatingActionButtonEdit);
    floatingActionButtonEdit.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {

            floatingActionButtonSave.setVisibility(View.VISIBLE);
            Animation animationLeft=AnimationUtils.loadAnimation(getApplicationContext(),R.anim.move_left);
            floatingActionButtonSave.startAnimation(animationLeft);

            textViewColors.setVisibility(View.VISIBLE);
            Animation animationDown= AnimationUtils.loadAnimation(getApplicationContext(),R.anim.move_down);
            textViewColors.startAnimation(animationDown);

            textViewRed.setVisibility(View.VISIBLE);
            textViewRed.startAnimation(animationDown);

            textViewBlue.setVisibility(View.VISIBLE);
            textViewBlue.startAnimation(animationDown);

            textViewGreen.setVisibility(View.VISIBLE);
            textViewGreen.startAnimation(animationDown);
            editNote();


        }
    });

    textViewRed.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            currentBackgroundColour=Colors.RED;
            getWindow().getDecorView().setBackgroundColor(Color.parseColor("#FE7676"));
        }
    });

    textViewBlue.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            currentBackgroundColour=Colors.BLUE;
            getWindow().getDecorView().setBackgroundColor(Color.parseColor("#76FEEC"));
        }
    });

    textViewGreen.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
           currentBackgroundColour = Colors.GREEN;
            getWindow().getDecorView().setBackgroundColor(Color.parseColor("#99FE76"));
        }
    });

}


@Override
public void onBackPressed() {
    Intent intent=new Intent(this,MainActivity.class);
    startActivity(intent);
}


public void editNote(){


    editTextTitle.setInputType(InputType.TYPE_CLASS_TEXT);
    editTextTitle.setFocusable(true);
    editTextTitle.requestFocus();

    editTextContent.setInputType(InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_FLAG_MULTI_LINE);


    editTextTag.setInputType(InputType.TYPE_CLASS_TEXT);



}

public void save() {


    int colour=Color.WHITE;

    switch (currentBackgroundColour){
        case RED:
            colour = colorRed;
            break;
        case BLUE:
            colour = colorBlue;
            break;
        case GREEN:
            colour = colorGreen;
            break;
    }


    final NoteModel noteModel = new NoteModel();
    noteModel.setTitle(editTextTitle.getText().toString());
    noteModel.setContent(editTextContent.getText().toString());
    noteModel.setTag(editTextTag.getText().toString());
    noteModel.setId(id);
    noteModel.setDate(getDateTime());
    noteModel.setColor(colour);

    boolean isModified=dataBaseHelper.editNote(noteModel);
    if(isModified==true){
        Toast.makeText(this, "Modifications saved", Toast.LENGTH_SHORT).show();

      finish();

    }
    else Toast.makeText(this, "Unable to save modifications", Toast.LENGTH_SHORT).show();

}

private String getDateTime() {
    SimpleDateFormat dateFormat = new SimpleDateFormat(
            "dd-MM-yyyy HH:mm:ss", Locale.getDefault());
    Date date = new Date();
    return dateFormat.format(date);
}

指向屏幕截图的链接

单击“编辑”按钮时显示此图像。这很好,文本转到另一行。

单击“保存”按钮时显示此图像。文本返回到单行,而不是多行。

共有1个答案

东方富
2023-03-14

好吧,我知道当我点击编辑按钮时问题就出现了。单击按钮会使editText自动单行,尽管我在XML中非常清楚地提到了InputType为多行。

单击按钮后,我编写了editText内容,使editText多行。设置单行(假) 在我的java文件中的onClick按钮代码中。就是这样。:)

 类似资料:
  • 我刚开始Android程序!因此,我遵循谷歌的“启动另一项活动”指南:https://developer.android.com/training/basics/firstapp/starting-activity.html此行EditText=(EditText)findViewById(R.id.EditText)中出错;在“(R.id.editText)”部分!如果有人能解释为什么

  • 问题内容: 这是我的xml 使用此代码也不起作用 maxLenth无法正常工作,我不知道为什么,但是不是。 我检查了堆栈上的其他答案,但它们也无法正常工作。 请检查是否有任何EditText属性冲突,或者是什么问题? 编辑:其他开发人员也面临着 同样的问题 请参阅评论此处 Mansi和aat面临着同样的问题 ,这里的评论是Vincy和Riser面临着同样的问题 编辑:问题解决了 我正在使用输入过滤

  • 可能重复: 将edittext限制为单行 我有两个编辑文本。我的问题是,当我按下键盘上的enter键时,它会创建另一组行。或者像编辑文本中的下一行一样创建。我想删除它,我想它是在一行。即使我在键盘上输入enter键,它仍然不会创建下一行。 你是怎么做到的?

  • 有没有人知道如何让它工作,以便它可以在字段中键入文本?

  • 我试图实现一个方法,这样我就可以在edittext字段中输入一个值(整数),然后单击按钮删除SQLite数据库条目。但我似乎无法让它工作。 下面是DatabaseManager类中的方法: