Back to project page SizeAdjustingTextView.
The source code is released under:
GNU General Public License
If you think the Android project SizeAdjustingTextView listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.elliott.chenger.sizeadjustingtextview.utils; //from www .j a va 2 s . com import com.elliott.chenger.sizeadjustingtextview.view.SizeAdjustingTextView; public class TextMover { public static void moveTextFromCellToCell(SizeAdjustingTextView startingCell, SizeAdjustingTextView endCell){ if(!startingCell.getText().toString().isEmpty()){ String text = startingCell.getText().toString(); endCell.setText(text); } } public static void moveNewTextIntoCell(SizeAdjustingTextView targetCell, String text){ targetCell.setText(text); } }