问题描述
我有显示微调以下问题
在 DialogFragment
。
的微调
显示切换和键盘出现时,它才会显示确定。
The Spinner
is displayed cut and it's only displayed OK when the keyboard appears.
的微调
实际上是下面的code自定义类:
The Spinner
is actually a custom class with the following code:
import android.content.Context;
import android.util.AttributeSet;
import com.actionbarsherlock.internal.widget.IcsSpinner;
public class CustomIcsSpinner extends IcsSpinner {
public CustomIcsSpinner(Context context, AttributeSet attrs) {
super(context, attrs, com.actionbarsherlock.R.attr.actionDropDownStyle);
}
public CustomIcsSpinner(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
}
}
我该如何解决这个问题?
How can I fix this?
先谢谢了。
推荐答案
到 com.actionbarsherlock.internal.widget.IcsSpinner
源$ C $ C
找到 DropdownPopup弹出=新DropdownPopup(背景下,ATTRS,defStyle);
与 DropdownPopup弹出更换=新DropdownPopup(context.getApplicationContext(),ATTRS,defStyle);
Go to com.actionbarsherlock.internal.widget.IcsSpinner
source code.
Find DropdownPopup popup = new DropdownPopup(context, attrs, defStyle);
Replace with DropdownPopup popup = new DropdownPopup(context.getApplicationContext(), attrs, defStyle);
对我的作品;
:)
这篇关于微调选项(从ABS的IcsSpinner)内DialogFragment显示截断的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!