Questions tagged «loading»

6
加载内容时在ImageView中使用“动画圆”
我当前在我的应用程序中使用的列表视图可能需要一秒钟才能显示出来。 我目前正在使用列表视图的@ id / android:empty属性创建“正在加载”文本。 <TextView android:id="@id/android:empty" android:layout_width="match_parent" android:layout_height="match_parent" android:background="#FF0000" android:text="Loading..."/> 现在,我想用在加载对话框中使用的动画圆代替此文本替换它,我想你们都知道我的意思: 编辑:我不想对话框。我想在我的布局中显示出来。 非常感谢您的帮助!

7
处于加载状态时如何在按钮上添加微调图标?
Twitter Bootstrap的按钮具有良好的Loading...状态。 事实是,它仅显示一条消息,例如Loading...通过data-loading-text属性传递的消息,如下所示: <button type="button" class="btn btn-primary start" id="btnStartUploads" data-loading-text="@Localization.Uploading"> <i class="icon-upload icon-large"></i> <span>@Localization.StartUpload</span> </button> 查看Font Awesome,您会看到现在有一​​个动画微调器图标。 在触发这样的Upload操作时,我尝试集成该微调器图标: $("#btnStartUploads").button('loading'); $("#btnStartUploads i").removeAttr('class'); $("#btnStartUploads i").addClass('icon-spinner icon-spin icon-large'); 但这完全没有效果,也就是说,我只看到Uploading...按钮上的文字。 按钮处于“加载”状态时是否可以添加图标?看起来Bootstrap只是<i class="icon-upload icon-large"></i>在处于Loading状态时只是删除了按钮内的图标。 这是一个简单的演示,展示了我上面描述的行为。如您所见,当它进入“加载”状态时,图标消失了。在该时间间隔后,它会重新出现。



12
在Java中使用相对路径打开资源
在我的Java应用程序中,我需要获取一些文件和目录。 这是程序结构: ./main.java ./package1/guiclass.java ./package1/resources/resourcesloader.java ./package1/resources/repository/modules/ -> this is the dir I need to get ./package1/resources/repository/SSL-Key/cert.jks -> this is the file I need to get guiclass 加载resourcesloader类,该类将加载我的资源(目录和文件)。 至于文件,我试过了 resourcesloader.class.getClass().getResource("repository/SSL-Key/cert.jks").toString() 为了获得真实的路径,但是这种方式行不通。 我不知道如何执行目录。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.