[android-developers] Re: Hebrew Fonts on Android 2.1

2010-05-12 Thread alexk-il
Hi Ilan,

You may trying installing Hebrew fonts by yourself.
1. You need to get root access on your phone
2. Install Hebrew fonts

Should be easy to find relevant instructions on Google search.

Good luck
Alex



On May 10, 10:36 am, Lanpazi lanp...@gmail.com wrote:
 I love my new HTC Incredible, but it is frustrating to not be able to
 read and respond to emails and Facebook content on a daily basis.

-- 
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 from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] SUPPLICANT_CONNECTION_CHANGE_ACTION - Is it a bug in Android sources?

2010-04-23 Thread alexk-il
Hi,

I'm learning the StatusBarPolicy.java as a reference for implementing
a WiFi Monitor:

http://android.git.kernel.org/?p=platform/frameworks/base.git;a=blob_plain;f=services/java/com/android/server/status/StatusBarPolicy.java;hb=HEAD

I've noticed something strange with the processing of the
SUPPLICANT_CONNECTION_CHANGE_ACTION  actions.

1. First, the BroadcastReceiver registers with the following filters
(including the SUPPLICANT_CONNECTION_CHANGE_ACTION):

filter.addAction(WifiManager.WIFI_STATE_CHANGED_ACTION);
 
filter.addAction(WifiManager.SUPPLICANT_CONNECTION_CHANGE_ACTION);
filter.addAction(WifiManager.NETWORK_STATE_CHANGED_ACTION);
filter.addAction(WifiManager.RSSI_CHANGED_ACTION);

2. The onReceive method calls the updateWifi for the processing.
However, the SUPPLICANT action is not handled here:

if (action.equals(WifiManager.NETWORK_STATE_CHANGED_ACTION) ||
   action.equals(WifiManager.WIFI_STATE_CHANGED_ACTION) ||
   action.equals(WifiManager.RSSI_CHANGED_ACTION)) {
   updateWifi(intent);
}

3. updateWifi however tries to handle the
SUPPLICANT_CONNECTION_CHANGE_ACTION anyway:

   else if
(action.equals(WifiManager.SUPPLICANT_CONNECTION_CHANGE_ACTION)) {
  ...
   }

It seems to me that the SUPPLICANT_CONNECTION_CHANGE_ACTION  is left
unhandled.

Is it a bug or am I missing something?

Thanks
Alex

-- 
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 from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Build.MODEL and Build.PRODUCT usage

2010-04-14 Thread alexk-il
Hi,

Can I use the Build.MODEL and Build.PRODUCT to detect the emulator?
Looks like these strings are always equal to sdk in emulators.

Will it be able to work all the or will it eventually finally on an
Android SDK update or a new phone?

Thanks
Alex

-- 
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 from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

To unsubscribe, reply using remove me as the subject.


[android-developers] Re: integrating pro-guard (obfuscation).

2009-12-17 Thread alexk-il
You haven't convienced me :). I still think that ProGuard may be
usefull in my project.

I'd like ot second phil's request for help on integrating the ProGuard
with Ecclipse/Android.

On Dec 16, 12:17 am, CyberQat jef...@gmail.com wrote:
 Well since you raised them  this is for others reading the thread
 since, as you said, you've already made up your mind...

-- 
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 from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] HelloWebView tutorial - onKeyDown doesn't work without WebViewClient

2009-12-17 Thread alexk-il

Hi,

I wonder why the HelloWebView.onKeyDown stops working if the WebView
is used without overloaded WebAppClient:
//  webview.setWebViewClient(new WebAppClient());

I guess this question is related to the following line of the
tutorial:
However, you'll notice that we can't navigate back. We need to handle
the back button Unfortunately the tutorial does not provide more
details on that fact.

So, what am I missing here?

Thanks
Alex


-- 
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 from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Re: Using intent with startActivity from inner class

2009-12-16 Thread alexk-il

Hi,

No help is required.
Strange enough, unintentional restart of Eclipse has solved the issue
without a single line change :)

Thanks anyway,
Alex


On Dec 15, 9:04 pm, alexk-il alexander.ku...@gmail.com wrote:
 Hi,

 I am trying to use an intent from an inner class which should be
 callable from different Activities/outer classes. I receive the
 following compilation error: The constructor Intent(InnerClass,
 ClassOtherClass) is undefined.

 The code below illustrates what I am trying to achieve.
 Any help would be greatly appreciated.

 Thanks,
 Alex

-- 
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 from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Re: Using intent with startActivity from inner class

2009-12-16 Thread alexk-il

Hi,

Well, there compilation problem has disappeared after an unintentional
restart of the Eclipse. The code actually does it job.
Strange...

Thanks for your time, anyway :)

Cheers,
Alex





On Dec 15, 9:04 pm, alexk-il alexander.ku...@gmail.com wrote:
 I am trying to use an intent from an inner class which should be
 callable from different Activities/outer classes. I receive the
 following compilation error: The constructor Intent(InnerClass,
 ClassOtherClass) is undefined.

-- 
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 from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Using intent with startActivity from inner class

2009-12-15 Thread alexk-il
Hi,

I am trying to use an intent from an inner class which should be
callable from different Activities/outer classes. I receive the
following compilation error: The constructor Intent(InnerClass,
ClassOtherClass) is undefined.

The code below illustrates what I am trying to achieve.
Any help would be greatly appreciated.

Thanks,
Alex


public class OuterClass1 extends Activity {
@Override
   public void onCreate(Bundle savedInstanceState) {
  ...
  new InnerClass(this);
  ...
   }
}

public class OuterClass2 extends Activity {
@Override
   public void onCreate(Bundle savedInstanceState) {
  ...
  new InnerClass(this);
  ...
   }
}

public class InnerClass {

   public InnerClass(Activity ac){
  ...
  Intent i = new Intent(ac, FooBar.class); // This line compiles

  // Next line doesn't compile - The constructor Intent
(InnerClass, ClassOtherClass) is undefined
  ac.startActivity(i);
  ...
   }
}


-- 
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 from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en