Empty space when I return to Activity (Soft Keyboard forced)

后端 未结 2 1337
难免孤独
难免孤独 2020-12-19 13:57

I have an ActionView with menu item on ActionBar (using ActionBarSherlock), I\'m able to display an EditText as a search fiel

相关标签:
2条回答
  • 2020-12-19 14:14

    Remove Translucent theme:

    android:theme="@style/Theme.AppCompat.Translucent" 
    

    and use your Activity in manifest.xml as:

    <activity
         android:name=".SearchActivity"
         android:screenOrientation="portrait">
    
    0 讨论(0)
  • 2020-12-19 14:21

    Did you tried this one?

    setContentView(R.layout.activity_direction_3);
        getWindow().getDecorView().setBackgroundColor(
                android.R.color.transparent);
    
    0 讨论(0)
提交回复
热议问题