我的问题类似于Full Screen DialogFragment in Android ,但这个问题并不能完全解决我的问题。
我有一个 DialogFragment,我想为其设置最大尺寸,并在 DialogFragment 超出显示范围时自动调整大小。这似乎应该融入操作系统,但我能想到的唯一解决方案是轮询显示尺寸并在尺寸超出显示范围时手动调整大小。
在 DialogFragment 的 onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) 中:
// Display the first screen
m_rootView = inflater.inflate(R.layout.fragment_popup, container, false);
// Readjust the size of the dialog fragment if it is too large for the display
Globals.AdjustSizeOfDialogFragment(getActivity(), container);
调整 Globals.java 中的代码:
// Adjusts the size of a dialog fragment's popup view to ensure that it fits within the display of the current device
public static void AdjustSizeOfDialogFragment(final Activity parentActivity, final View popupRoot)
{
// If all of our function parameters are valid
if ((parentActivity != null) && (popupRoot != null))
{
// If the dialog's root view has already rendered (has defined layout parameters)
if (popupRoot.getLayoutParams() != null)
{
// Resize the dialog now
ResizeDialogFragment(parentActivity, popupRoot);
}
// Else the view has not finished rendering yet
else
{
// Assign a listener to notify us when it has finished rendering
popupRoot.addOnLayoutChangeListener(new OnLayoutChangeListener()
{
public void onLayoutChange(View v, int left, int top, int right, int bottom, int oldLeft, int oldTop, int oldRight, int oldBottom)
{
// Remove the layout listener
v.removeOnLayoutChangeListener(this);
// Now we can render the dialog
ResizeDialogFragment(parentActivity, popupRoot);
}
});
}
}
}
// Does the actual logic/math behind the AdjustSizeOfDialogFragment function
private static void ResizeDialogFragment(Activity parentActivity, View popupRoot)
{
// Retrieves information about the display of the current device
DisplayMetrics deviceDisplayMetrics = new DisplayMetrics();
// Layout parameters that need to be applied to the popup's root view
LinearLayout.LayoutParams llParams = null;
FrameLayout.LayoutParams flParams = null;
// If all of our function parameters are valid
if ((parentActivity != null) && (popupRoot != null) && (popupRoot.getLayoutParams() != null))
{
// Retrieve the layout parameters from the popup's root view and also get information on the current device's display
if (popupRoot.getLayoutParams() instanceof LinearLayout.LayoutParams)
{
llParams = (LinearLayout.LayoutParams) popupRoot.getLayoutParams();
}
else if (popupRoot.getLayoutParams() instanceof FrameLayout.LayoutParams)
{
flParams = (FrameLayout.LayoutParams) popupRoot.getLayoutParams();
}
parentActivity.getWindowManager().getDefaultDisplay().getMetrics(deviceDisplayMetrics);
// If either the height or width of the popup view is greater then the height or width
// of the current display, clip them to approximately 90% of the display's width/height.
if (llParams != null)
{
if (llParams.width > deviceDisplayMetrics.widthPixels)
{
llParams.width = (int) (deviceDisplayMetrics.widthPixels * 0.9);
}
if (llParams.height > deviceDisplayMetrics.heightPixels)
{
llParams.height = (int) (deviceDisplayMetrics.heightPixels * 0.9);
}
}
else if (flParams != null)
{
if (flParams.width > deviceDisplayMetrics.widthPixels)
{
flParams.width = (int) (deviceDisplayMetrics.widthPixels * 0.9);
}
if (flParams.height > deviceDisplayMetrics.heightPixels)
{
flParams.height = (int) (deviceDisplayMetrics.heightPixels * 0.9);
}
}
}
}
问题是:真正的 Android 方法是什么?这是我唯一的选择吗?这似乎应该内置到操作系统中,但我问过的人都找不到。
最佳答案
也许您遇到此问题是因为 Windows 正在调整显示您的 DialogFragment,因此如果在 AndroidManifest.xml 中将 windowSoftInputMode 属性设置为 adjustNothing > 显示的 Activity ,可以解决您的问题。
<activity
...
android:windowSoftInputMode="adjustNothing">
...
仅供引用:https://developer.android.com/training/keyboard-input/visibility.html#ShowOnStart
关于java - Android DialogFragment 自动调整大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13955645/
很好奇,就使用rubyonrails自动化单元测试而言,你们正在做什么?您是否创建了一个脚本来在cron中运行rake作业并将结果邮寄给您?git中的预提交Hook?只是手动调用?我完全理解测试,但想知道在错误发生之前捕获错误的最佳实践是什么。让我们理所当然地认为测试本身是完美无缺的,并且可以正常工作。下一步是什么以确保他们在正确的时间将可能有害的结果传达给您? 最佳答案 不确定您到底想听什么,但是有几个级别的自动代码库控制:在处理某项功能时,您可以使用类似autotest的内容获得关于哪些有效,哪些无效的即时反馈。要确保您的提
我的目标是转换表单输入,例如“100兆字节”或“1GB”,并将其转换为我可以存储在数据库中的文件大小(以千字节为单位)。目前,我有这个:defquota_convert@regex=/([0-9]+)(.*)s/@sizes=%w{kilobytemegabytegigabyte}m=self.quota.match(@regex)if@sizes.include?m[2]eval("self.quota=#{m[1]}.#{m[2]}")endend这有效,但前提是输入是倍数(“gigabytes”,而不是“gigabyte”)并且由于使用了eval看起来疯狂不安全。所以,功能正常,
我真的很习惯使用Ruby编写以下代码:my_hash={}my_hash['test']=1Java中对应的数据结构是什么? 最佳答案 HashMapmap=newHashMap();map.put("test",1);我假设? 关于java-等价于Java中的RubyHash,我们在StackOverflow上找到一个类似的问题: https://stackoverflow.com/questions/22737685/
我收到这个错误:RuntimeError(自动加载常量Apps时检测到循环依赖当我使用多线程时。下面是我的代码。为什么会这样?我尝试多线程的原因是因为我正在编写一个HTML抓取应用程序。对Nokogiri::HTML(open())的调用是一个同步阻塞调用,需要1秒才能返回,我有100,000多个页面要访问,所以我试图运行多个线程来解决这个问题。有更好的方法吗?classToolsController0)app.website=array.join(',')putsapp.websiteelseapp.website="NONE"endapp.saveapps=Apps.order("
我正在尝试使用boilerpipe来自JRuby。我看过guide从JRuby调用Java,并成功地将它与另一个Java包一起使用,但无法弄清楚为什么同样的东西不能用于boilerpipe。我正在尝试基本上从JRuby中执行与此Java等效的操作:URLurl=newURL("http://www.example.com/some-location/index.html");Stringtext=ArticleExtractor.INSTANCE.getText(url);在JRuby中试过这个:require'java'url=java.net.URL.new("http://www
我只想对我一直在思考的这个问题有其他意见,例如我有classuser_controller和classuserclassUserattr_accessor:name,:usernameendclassUserController//dosomethingaboutanythingaboutusersend问题是我的User类中是否应该有逻辑user=User.newuser.do_something(user1)oritshouldbeuser_controller=UserController.newuser_controller.do_something(user1,user2)我
什么是ruby的rack或python的Java的wsgi?还有一个路由库。 最佳答案 来自Python标准PEP333:Bycontrast,althoughJavahasjustasmanywebapplicationframeworksavailable,Java's"servlet"APImakesitpossibleforapplicationswrittenwithanyJavawebapplicationframeworktoruninanywebserverthatsupportstheservletAPI.ht
这篇文章是继上一篇文章“Observability:从零开始创建Java微服务并监控它(一)”的续篇。在上一篇文章中,我们讲述了如何创建一个Javaweb应用,并使用Filebeat来收集应用所生成的日志。在今天的文章中,我来详述如何收集应用的指标,使用APM来监控应用并监督web服务的在线情况。源码可以在地址 https://github.com/liu-xiao-guo/java_observability 进行下载。摄入指标指标被视为可以随时更改的时间点值。当前请求的数量可以改变任何毫秒。你可能有1000个请求的峰值,然后一切都回到一个请求。这也意味着这些指标可能不准确,你还想提取最小/
HashMap中为什么引入红黑树,而不是AVL树呢1.概述开始学习这个知识点之前我们需要知道,在JDK1.8以及之前,针对HashMap有什么不同。JDK1.7的时候,HashMap的底层实现是数组+链表JDK1.8的时候,HashMap的底层实现是数组+链表+红黑树我们要思考一个问题,为什么要从链表转为红黑树呢。首先先让我们了解下链表有什么不好???2.链表上述的截图其实就是链表的结构,我们来看下链表的增删改查的时间复杂度增:因为链表不是线性结构,所以每次添加的时候,只需要移动一个节点,所以可以理解为复杂度是N(1)删:算法时间复杂度跟增保持一致查:既然是非线性结构,所以查询某一个节点的时候
我们目前正在为ROR3.2开发自定义cms引擎。在这个过程中,我们希望成为我们的rails应用程序中的一等公民的几个类类型起源,这意味着它们应该驻留在应用程序的app文件夹下,它是插件。目前我们有以下类型:数据源数据类型查看我在app文件夹下创建了多个目录来保存这些:应用/数据源应用/数据类型应用/View更多类型将随之而来,我有点担心应用程序文件夹被这么多目录污染。因此,我想将它们移动到一个子目录/模块中,该子目录/模块包含cms定义的所有类型。所有类都应位于MyCms命名空间内,目录布局应如下所示:应用程序/my_cms/data_source应用程序/my_cms/data_ty