- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个显示服务器状态(在线或离线)的程序。我放入一个微调器来向用户展示它正在加载,在 AsyncTask 中我关闭在线/离线图像并在加载时打开微调器,完成后执行相反的操作。该代码完成了它的工作,但我觉得它是由一些小故障完成的,并且可能会在以后破坏它,所以我想现在就修复它。基本上发生的是在线/离线图像的变量和微调器交换值的变量,我不确定为什么。
这是我的代码:
public View background;
public View status;
public View loading;
class CheckStatusTask extends AsyncTask<Void, Void, Boolean> {
//show loading
protected void onPreExecute(){
status.setVisibility(View.VISIBLE);<-- this shows the spinner but should show online/offline
//loading.setVisibility(View.INVISIBLE);<-- this shows the online/offline but should show the spinner
}
//check if server is online
protected Boolean doInBackground(Void... params) {
return CheckStatus.check();
}
//set status bar to offline if flag is false
protected void onPostExecute(Boolean flag) {
status.setVisibility(View.INVISIBLE);<-- this shows the spinner but should show online/offline
//loading.setVisibility(View.VISIBLE);<-- this shows the online/offline but should show the spinner
if(!flag){
background.setBackgroundResource(R.layout.offline);
status.setBackgroundResource(R.drawable.offline);<-- correct
}
}
}
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
background = findViewById(R.id.status);
status = findViewById(R.id.image);
loading = findViewById(R.id.loading);
new CheckStatusTask().execute();
}
XML 文件:
<?xml version="1.0" encoding="utf-8"?>
<ScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:fillViewport="true">
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content" android:background="#ffffff">
<!-- Status Starts-->
<LinearLayout android:id="@+id/status"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@layout/online"
android:paddingTop="5dip"
android:paddingBottom="5dip">
<!-- Online/Offline Start-->
<ImageView android:id="@+id/image"
android:src="@drawable/logo"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="10dip"/>
<ProgressBar
android:id="@+id/loading"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<!-- Online/Offline Ends -->
</LinearLayout>
<!-- Status Ends -->
<!-- Main Form -->
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="10dip"
android:layout_below="@id/status">
<TextView
android:id="@+id/text"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textColor="#372c24"
android:text="Home"/>
</LinearLayout>
<!-- Main Form Ends -->
</RelativeLayout>
</ScrollView>
如您所见,状态变量定义为显示在线/离线图像,加载变量定义为显示微调器,但它们的作用恰恰相反。这只发生在其他任何地方的这个特定功能上。
最佳答案
android:background="@layout/online"
通过这一行,您将线性布局的背景设置为 res/layout/
文件夹中的可绘制形状。
可绘制资源,例如形状可绘制资源,应放置在 res/drawable/
文件夹中。通过将其存储在布局文件夹中,它会混淆资源的 R.id 值。我不确切地知道为什么问题会以这种方式表现出来。但是将那些 online.xml 和 offline.xml 移动到 res/drawable/
并删除 res/layout/
中的那些应该可以解决它。
移动文件后,将上面的行更改为:
android:background="@drawable/online"
参见 Drawable Resources有关 xml 可绘制资源的更多信息。
关于Android 变量在 AsyncTask 中交换值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14615952/
我在理解这些函数如何更新底层引用、原子等时遇到问题。 文档说:(应用当前身份值参数) (def one (atom 0)) (swap! one inc) ;; => 1 所以我想知道它是如何“扩展到
尝试让一段代码看起来更好。 我在 Clojurescript 中有以下内容: (swap! app-state assoc-in [:lastresults] []) (swap! app-state
我在数据库中有带有排序顺序号的记录。现在我想创建一个带有向上和向下按钮的用户界面来重新排序它们。制作两个 functionsUp(record) 和 functionDown(record) 的最佳算
如何才能让第二次点击时返回?我想我必须以某种方式找到活跃的,但不确定。 $("#test").click(function(){ $("#dsa").fadeOut() $("#asd
我需要有关这次考试的帮助。我需要反转输入字符串。 int main(void) { char str[30]; int strlen; int i=0; int count=0;int
我正在用 C 语言玩指针...我尝试编写一个接收指向值的指针、检索指针的指针并交换指向值的指针的交换,而不是接收指向值的指针和交换值的常规交换。 这是代码... 互换功能: void swap(voi
如何在 javascript 中切换值?例如,如果 x = apple,则函数应返回 x = orange。如果 x = orange,则函数应返回 x = apple。不确定,这里有什么用,切换或交
刚接触这类东西,可能做错了什么,但是- 我有 3 个成员 std::unique_ptr currentWeapon; std::unique_ptr weaponSlotOne; std::uniq
我想在 Map 内的不可变列表内交换项目,示例: const Map = Immutable.fromJS({ name:'lolo', ids:[3,4,5] }); 我正在尝试使用
我创建了动态数组。如果具有某些值,则填充。打印它。但是交换/交换指针后(任务是在特定条件下交换行) 条件取决于sumL。为了不浪费您的时间,我没有描述细节。 问题在于交换指针。 for ( k = 0
要反转整个 vector,存在 std::reverse。但我想将一个 vector “划分”为两部分(恰好在中间)并将两者反转,将它们放回一起并再次反转整个 vector 。例如我们有: 0 1 2
我正在致力于代码最小化和增强。我的问题是:是否可以在不破坏代码逻辑的情况下交换上面的 if 语句? int c1 = Integer.parseInt(args[0]) ; int c
我读过释放 vector 内存的最佳方法是: vector().swap(my_vector); 而且我真的不明白发生了什么。交换函数需要 2 个 vector 并交换它们的元素,例如: vector
我正在尝试编写一个 Haskell 函数,该函数接受一串字母对,并在所有字母组成的字符串中交换该对字母,但我想出的方法感觉很尴尬且不惯用。 我有 swap a b = map (\x-> if x =
我正在尝试使用向上和向下箭头交换两个元素。 JSFiddle 解决方案会很棒! 我的 HTML: Some text down Some ot
当将 subview 与另一个太阳 View 交换时,是否需要重新应用约束?是否需要删除适用于已删除 View 的约束? 或者它们应该自动持续存在? 最佳答案 约束是 View 的“一部分”。当您删除
所以我制作网站已经有一段时间了,但只是真正用于显示和信息的东西。我想尝试一下 AngularJs,所以我遵循了 Codeschool 上的指南。当我根据在线文档意识到我使用的语法不被推荐时,我在该应用
我正在尝试编写一个函数,可以将字符串中的 unicode 字符替换为非 unicode ASCII 字符,问题是上传包含它们的字符串时,unicode 连字符和引号不会被读取。 我希望该函数有一个带有
我目前正在使用 Azure 网站来部署我的应用程序。我目前正在使用两个网站,每个网站监听我的 GIT 的不同分支。如图所示here . 现在,为了让它变得完美,我只是缺少一种在这两个实例之间快速切换的
在我的 javascript 中,有两个包含一些值的 div。 我想交换这些div中的值。 有什么解决办法吗? 最佳答案 var temp = $('#div1').html(); $('#div1'
我是一名优秀的程序员,十分优秀!