我正在使用DialogFragment
创建ActionBarSherlock
。我将图片的ID传递给DialogFragment
。它只包含ImageView:
<ImageView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/imageF"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center_vertical|center_horizontal" />
DialogFragment的代码:
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View v = inflater.inflate(R.layout.dialog, container, false);
View iv = v.findViewById(R.id.imageF);
((ImageView) iv).setImageResource(imgId);
return v;
}
但每次我得到这个:
对话框不适合图像。我使用AlertDialog
(也是同样的SO post)获得相同的行为。
尝试将图像设置为背景(setBackgroundResource
)时,图像适合对话框(图像填充屏幕截图中显示的未使用空间)。
如何避免这种情况并使对话框适合图像?有没有解决方法?
请帮助。
答案 0 :(得分:1)
经过长时间的搜索和许多尝试解决此问题的不成功后,我找到了解决方案。
我需要设置android:adjustViewBounds="true"
。