taTextDiff is a very simple application that shows differences between two text files.
Version: | 1.1.1 |
Date: | 2011-08-02 |
Author: | Tom Arn, www.t-arn.com |
The program searches from the top lines of both panels until it finds a difference and then stops. To search on, you must first manually match the top lines again.
In the Options you can choose 'Ignore whitespace' which will ignore leading and trailing spaces/tabs during the search.
taTextDiff supports the "android.intent.action.SEND" intent action and can be called from other applications using following code:
ComponentName cn = new ComponentName("com.t_arn.taTextDiff", "com.t_arn.taTextDiff.MainActivity"); Intent intent = new Intent(); intent.setComponent(cn); intent.putExtra("android.intent.extra.FilePath1", "/sdcard/file1.txt"); intent.putExtra("android.intent.extra.FilePath2", "/sdcard/file2.txt"); startActivity(intent);
The file paths can be passed in the Extra Bundle. The key names for them can be set in the options. The default values are android.intent.extra.FilePath1 and android.intent.extra.FilePath2
Thank you for choosing this SOFTWARE! You may only use this SOFTWARE if you agree with the conditions listed further below:
COPYRIGHT
This SOFTWARE has been developed by Tom Arn, www.t-arn.com, (in the following termed AUTHOR) and is free under the terms of the GNU General Public License.
NO WARRANTY
The SOFTWARE is provided AS IS without a warranty of any kind. All express, implied or statutory warranties, including any implied warranty of merchantibility or fitness for a particular purpose, are hereby excluded. The AUTHOR does not warrant that the SOFTWARE is fail-safe or error-free. The user must bear all risks when using the SOFTWARE.
NO LIABILITY
In no event will the AUTHOR be liable for direct, indirect or consequential damages related to the use (or the inability of the use) of the SOFTWARE, even if the AUTHOR has been advised of the possibility of such damages.