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.autosizingtextexampleproject.utils; // ww w .j a va 2 s.c om import com.elliott.chenger.autosizingtextexampleproject.view.SizeAdjustingTextView; /** * Created by chenger on 5/26/14. */ 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); } }