Senthil Ganesan

Greenhorn
+ Follow
since Jul 29, 2010
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Senthil Ganesan

friend's
I'm working upon facebook application to post feed from device,i have share option in my title bar of my application,some times the facebook feed post appears in the screen has getting blank content without the title,and description,again when i click share option on next time the feed content is available,what the reason for getting null at first click is't my problem or facebook issue.

help me

thanks in advance.
13 years ago
Dear friend's,
I developed an app in android where i parse an url and to show the reults using wifi has well,but when i go for 3G it's not working,what i need to do work 3G,enabled device.

what i need define in my manifest file for 3G,how can i implement in android device.

thanks in advance.
13 years ago
Dear friend's,

I need help on accepting special characters in android facebook feed when posting from device,where special character like "android" are not being accepted in facebook even i tried encoding and decoding nothing being change,still feed post getting null post. help me to fix this issue.


thanks in advance.




13 years ago
friend's


I have list of menus below the title bar and it have menus like

All Article | Top10 |

when i select All Article menu it parse and list the data and below the last list row i have button to load more data in list,for that purpose i used singleton class when i click the Top10 menu i have to do the same but here i need to clear the singleton class fields,i tried to set singleton class instance to be null in clear() ,but it doesn't clear the field values again it shows the All Article list data,i never used individual activity for each menu,all i'm doing in same activity.

Thanks in advance.
13 years ago
hi,

try to use a xml file in drawabe folder,with the shape you needed

for eg: in drawabel folder place an border.xml file like below



and in your layout.xml you can set image background has like this

<ImageView android:background="@drawable/border"/>

i hope it may help you little.
13 years ago

friend's , I'm facing the problem in map view,initially i have map view with search option in header for searchin up content i'm using here my code for search...


after clicking it the code below is executed

where here i fetch search list data from database. search option provides search map result has well and in search page there again search option in header and have back button ,when click back button either from UI or device it backs well to previous mapview and again back button in first mapview,when click back it throws an Activitythread exception, 09-16 16:04:17.088: ERROR/ActivityThread(425): Activity com.example.brown.Bru_Maps_Result has leaked IntentReceiver android.net.NetworkConnectivityListener$ConnectivityBroadcastReceiver@43898578 that was originally registered here. Are you missing a call to unregisterReceiver()? i think i have to override Onpause(),OnReceive() methods,but i dont know how to implement it.help me to fix this issue.
13 years ago
hi..
try to use scrollview widget in your layout.and have root layout has linearlayout.
13 years ago
hi frined's,

i have a mapview and it shows the map well,and in header i have search option,after entering search data the search map result to be dispalyed has a new activity,but i need it to on the main activity itself. I'm using the same xml layout for both the map views. here my manifestfile for maps main activity 1st activity:


suppose when in search result map i need to place search option in header means what can i do to get it.

here code for android manifest for search map result class. 2nd activity:


java code for search click event in first activity.

when i use the same code snippet in 2nd activity for search option ,it's not working what i need to add in manifest's 2nd activity. and i also tried to place search (2nd) activity code in my main activity,to display the result in same page but it shows the black empty screen at 1st activity itself.

please help me.

Thanks in advance.
13 years ago
friend's
I have tabhost in my application(2 tabs),when i select tab2 the content has been dislayed has a list view ,again i have list click event here to move further another list view,here the 2tab already in selected mode and it's focus not been changed,when i click the 2tab again i need it to reload its content has loaded initially with first list view content.how can i get it.

Thanks in advance.
13 years ago
hi..
i have a set tab activity in my main actitvity,from it first how can i override the ontabchange listener in another activity.

when i choose second tab it moves to corresponding activity to show listview with content and again when 1 list onclick i moved to next 2 listview at the time the tab i set visible in bottom, when i click again it needs to move previous view but stays back in 2 list view alone,i need it to move 1st listview,how can i do it.

Thanks in advance.

13 years ago
hi..
Here i attached screens please find it.

I have listview and below it have footer to bind more data at footer button click event,the data has been binded well but the problem here is expanding of empty space after click event,when i scrolled to move down,when i reach the last list row by scrolling the footer position is being at same at initially loaded,but here the problem is the list scrolling is applies to this footer layout also when i scrolled down after list row the footer get's moving
down,but i need it be after list last row and i also need to know how to scrolling to be stopped when particular condition satisfied.
i'm using inflater class to add footer layout.
i placed addfooterView() before my setadapter() method
inflater2 = this.getLayoutInflater();
footerView = inflater2.inflate(R.layout.footer, sex,true);

Thanks in advance.

Here my code for footer layout xml



in my main layout i have tabhost with group of lists.

13 years ago
hi try to use setOnItemClickListener event
for example---

dgame.setOnItemClickListener(new OnItemClickListener() {

public void onItemClick(AdapterView<?> arg0, View arg1, int arg2,
long arg3) {

---------------------
}
});
13 years ago
friend's

how can i stop scrolling in listview when certain condition met,i got the conditional logic to stop scrolling,but i don't know code snippet to stop scrolling of scrollbars to place under this condition,anybody provide me that code snippet.

Thanks in advance.
13 years ago
friend's I am facing problem in scrolling of listview,while inflating footer layout.the listview shows 10 records initially and i have click event to append more data below my last list row content,after clicking to view more data,the data has been binded and the listview focussed to firstrow and when i scrolled down to view new loaded data,after last list row the scrollbars continue to scroll on inflated footer layout and the empty space has been created between the list and inflated layout,so here i need not to scroll after last list row,how can i stop the scroll controller upto list content.

here my code for footer.xml layout <


and i have main layout with tabs and menu's and several ListView.


Thanks in advance.
13 years ago
Friend's
I want to know how to set background colour for webview,actual background of webview is in white colour,but i need it to be customised to some other colour,is't possible to achieve it.


Thanks in advance.
13 years ago