[android-developers] Re: Can a system service read and write files inside app space[Framework]

2013-10-15 Thread Jacky.Liu
if you mean make a Service App in android to operate other App's file in data/*package_name*/files/ directory i think it's forbidden by android system 在 2013年10月15日星期二UTC+8上午2时58分21秒,giles ian写道: 1. Can any system service (lets say SystemServer.java) read and write file inside app space,

[android-developers] Re: Forcing roboto font

2013-10-15 Thread Jacky.Liu
it's better to store the ttf file to your assets directory and then set the TypeFace 在 2013年10月14日星期一UTC+8下午9时15分51秒,onigunn写道: Hi there, currently I'm developing an android app which uses the beautiful default font Roboto. Now by testing on some devices I noticed following: On Samsung

[android-developers] Re: Design Problem: Client - CustomeData - Service

2013-10-15 Thread Jacky.Liu
Your question make me think of OO database, you can make C/S both operate the database. Why bother to send the CustomeData back and forth . 在 2013年10月14日星期一UTC+8下午3时35分33秒,Richard Zhao写道: Hi there, I'm designing a client / service software. client / service are both on some android.

[android-developers] Re: Forcing roboto font

2013-10-15 Thread Piren
thats what he meant... instead of setting the typeface for every TextView in the app, you subclass TextView, set the typeface on it and then use that one instead of TextView. Makes it much easier to manage fonts app wide. On Tuesday, October 15, 2013 10:09:30 AM UTC+3, Jacky.Liu wrote: it's

[android-developers] Re: Unable to authorize adb on Windows 7 after set of 10/8/13 Microsoft patches applied

2013-10-15 Thread gjs
Hi, I think I was having the similar issues using ADT and Windows 7 with a Nexus 4 (but not using Cygwin), to rectify so that it is now working OK, I added the following VID PID USB entries - - Add following entries in your

[android-developers] hide tab host in tab group activity

2013-10-15 Thread Amit Mangal
Hi there, i want to hide tab host in tab group activity but i dont know how to do that any idea ? thanks -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe

Re: [android-developers] Adding a required file, external to the app, to the Google Store ???

2013-10-15 Thread farmerbb
I have asked my programmer if he can help. In the meantime,any know if you try to attach a second file to the Store site, if it will be accepted or crash it ? The smallest database I can create is 170kb. I'd rather ask for permission, that get in trouble for not asking, and causing problems.

Re: [android-developers] Adding a required file, external to the app, to the Google Store ???

2013-10-15 Thread TreKing
On Tue, Oct 15, 2013 at 9:29 AM, farmerbb burgess_fam...@amtelecom.netwrote: In the meantime,any know if you try to attach a second file to the Store site, if it will be accepted or crash it ? What? The smallest database I can create is 170kb. I'd rather ask for permission, that get in

Re: [android-developers] Adding a required file, external to the app, to the Google Store ???

2013-10-15 Thread farmerbb
I apologise if I was not clear. Since I personally do not have the ability to write code for Android, I only hired someone to write what I wanted. I would like to know if I add a separate file to my app posting on the App Store site, will it be accepted, rejected, or cause nastiness like a

Re: [android-developers] Post text and image on twitter

2013-10-15 Thread Amit Mangal
you sent wrong link by mistake please check the link you sent. thanks On Mon, Oct 14, 2013 at 9:53 AM, TreKing treking...@gmail.com wrote: On Sat, Oct 12, 2013 at 3:57 PM, Amit Mangal forum.amit.man...@gmail.comwrote: How to post text and image on twitter? Any body knows any working

[android-developers] ListPopupWindow - align to right edge of the anchor

2013-10-15 Thread Simon Giddings
I am creating a custom drop down menu initiated from the action bar in a tablet application. When the button is pressed in the action bar, I need the ListPopupWindow to align it's right edge with the right edge of the action view button. However, I have not be able to find how to do this. Can

Re: [android-developers] Adding a required file, external to the app, to the Google Store ???

2013-10-15 Thread TreKing
On Tue, Oct 15, 2013 at 11:35 AM, farmerbb burgess_fam...@amtelecom.netwrote: I would like to know if I add a separate file to my app posting on the App Store site You can't add a separate file to your app posting. I'm not sure what you're getting at here.

Re: [android-developers] Post text and image on twitter

2013-10-15 Thread TreKing
On Tue, Oct 15, 2013 at 12:15 PM, Amit Mangal forum.amit.man...@gmail.comwrote: you sent wrong link by mistake please check the link you sent. My apologies. Here's the correct working link: http://justfuckinggoogleit.com/ Hope that helps.

[android-developers] Re: Preventing dialog auto-dismiss on button click

2013-10-15 Thread MobileDataSys
Mark Carter, Thank you for the workaround, this was driving me nuts. I just did one thing slightly different. Since the DialogInterface.OnClickListener does not get used I just set it to null like this: dialog.setButton(ProgressDialog.BUTTON_NEGATIVE, getString(R.string.cancel),

Re: [android-developers] Adding a required file, external to the app, to the Google Store ???

2013-10-15 Thread Nikolay Elenkov
On Wed, Oct 16, 2013 at 1:35 AM, farmerbb burgess_fam...@amtelecom.net wrote: I apologise if I was not clear. Since I personally do not have the ability to write code for Android, I only hired someone to write what I wanted. I would like to know if I add a separate file to my app posting on

Re: [android-developers] Getting the top fragment in the backstack

2013-10-15 Thread Bradley O'Hearne
It's been a few days and I've gotten no response on the questions below, so I suppose I'll assume there is no way to to accomplish getting the fragment associated with a BackStackEntry off the backstack without a specific name or ID for it. In my code, I have had to manage a separate true

Re: [android-developers] Selecting an radio button item in a multi page list

2013-10-15 Thread galapogos
On Monday, October 14, 2013 8:49:14 PM UTC+8, TreKing wrote: On Mon, Oct 14, 2013 at 12:42 AM, galapogos goi...@gmail.comjavascript: wrote: I have a list that is multiple pages long, and I'm trying to get the list index of the item that is selected using radio buttons. In

[android-developers] Re: Selecting an radio button item in a multi page list

2013-10-15 Thread galapogos
Hi, I actually have a ViewHolder in my adapter class, and in it, I have an int position. How do I access it when I select a list item either by clicking on the radio button or by tapping directly on the list item? Thanks! On Monday, October 14, 2013 10:27:00 PM UTC+8, Piren wrote: You're