Tagged Questions
0
votes
1answer
75 views
ContactsContract returning phone number with a space that can't be trimmed
I've a weird problem here. When you use this:
ContactsContract.CommonDataKinds.Phone.NUMBER
It returns 0123 4567890 (or something like that).
Now the SPACE in between these numbers is causing ...
0
votes
2answers
91 views
How to get a part of a datastring from clicking a listview-item
I have a variable called current which holds the last clicked listview item data. The id of this data is to be used to query the db again for movies taht are similar.
The problem that current = ...
0
votes
3answers
146 views
trim() check doesn't work and app crashes - Android
I tried this code (relevant parts..):
private EditText weightEditText,heightEditText;
weightEditText = (EditText)findViewById(R.id.weightEditText);
heightEditText = ...
0
votes
0answers
272 views
Android trim/split/cut video using SDK/NDK
I have heard of FFMPEG but i am not able to understand how to integrate it in my android code and use the methods of ffmpeg to trim the video.
Does anyone knows about video trimming library in ...
1
vote
2answers
1k views
Android sdk cut/trim video file
Is there any way to cut a video (mp4 or 3gp) on android, like use only the last 5 seconds of the movie... on iphone this is possible using the AVAssetExportSession but on android I haven't found ...
1
vote
1answer
7k views
Removing spaces from string
I'm trying to remove all the spaces from a string derived from user input, but for some reason it isn't working for me. Here is my code.
public void onClick(View src) {
switch (src.getId()) {
...
1
vote
2answers
478 views
Freeze the text of the TextView + android
I am using textview for adding text in my application, i want the text should singleLine that i did, now the problem is that the word got cutted off
i.e suppose in my textview the text would Hello, ...
1
vote
3answers
730 views
Trim text- when lot of space keys are entered at end
I have a edit text field in which reason can be entered. But if a person enters all spaces in the reason how can I detect it. Is there a way when a person enters all spaces or nothing , i have to save ...
2
votes
2answers
1k views
Android .NET Trim function in Java?
In an Android app, I am looking for the functionality of the .NET string function [Trim('aaa')] which will trim off the text "aaa" off a string. I don't think this is natively available in Java and I ...

