Ibus Unikey on Ubuntu 13.10

651

You should re-install ibus:

sudo apt-get install --reinstall ibus 

After a clean install of 13.10, Ibus input sources were not showing up in the list of input sources in Text Entry. There were only keyboard layouts.

After reinstalling Ibus and rebooting, Ibus input methods were listed correctly in Text Entry, including ibus-unikey.

Share:
651

Related videos on Youtube

Vimal Prabhu
Author by

Vimal Prabhu

Updated on November 25, 2022

Comments

  • Vimal Prabhu
    Vimal Prabhu over 1 year

    My requirement is to handle a double tap in my Grid control for Xamarin.Android without using gestures. I already have a selection operation to be performed on a single click.

    I have implemented the double tap logic in the OnSingleClick event of the IOnSingleClick interface. This is how it works: A single click will select the row of the grid and another single click will deselect the row of the grid.

    So now when I want to double tap, I don't want the selection to happen. How can i achieve this ? I cant use the OnSingleTapConfirmed() since the selection operation is handled in the key up event and hence a delay will happen which affects the user experience.

    public void OnClick(View v)
    {           
        long currentTouchTime = Java.Lang.JavaSystem.CurrentTimeMillis();
    
        if (previousClickTime == 0 || (currentTouchTime - previousClickTime > 500))
        {
            previousClickTime = currentTouchTime;
            //count = 0;
    
            if (this.DataColumn != null && previousClickTime != 0)
            {
                Handler.PostDelayed(action, 500);
            }                
            count = 1;
        }
        else
        {
            Toast.MakeText(this.Context, "Double Tapped", ToastLength.Short).Show();                                        
        }
    }
    
    • Aravinth
      Aravinth over 10 years
      me too :(( can't do anything. Just waiting for update
    • Sreeraj
      Sreeraj about 8 years
      Can you post the whole class ?
  • Tiến Tinh Tế
    Tiến Tinh Tế over 10 years
    I try re-install all things related ibus, but it not work.
  • chaskes
    chaskes over 10 years
    I saw that in your question, but assumed (incorrectly) that you meant the additional packages, not ibus itself. This took care of it for me. But not all ibus packages are working well under the new system (for example pinyin). So, I was able to install unikey after reinstalling ibus, and type a few letters with diacritics, but I don't know Vietnamese and can't say for sure unikey is working correctly. I'll look into it some more and edit the answer if I find anything else.
  • Tiến Tinh Tế
    Tiến Tinh Tế over 10 years
    I try to install cinamon and can use ibus-unikey. May be waiting for ubuntu fix bug.
  • Vimal Prabhu
    Vimal Prabhu about 8 years
    Please check the below solution that i finally settled with.