我有一个显示服务器状态的程序(无论是在线还是离线)。我放入一个微调器向用户显示其加载和AsyncTask我关闭在线/离线图像并在加载时打开微调器并在完成时执行相反操作。代码完成了它的工作,但我觉得它是由一些小故障完成的,可能会在以后的线上打破它,所以id就像现在修复它。基本上会发生什么是在线/离线图像的变量和微调器交换值的变量一些如何,我不知道为什么。
这是我的代码:
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>
正如您所看到的,状态变量被定义为显示在线/离线图像,并且加载变量被定义为显示微调器,但它完全相反。这只发生在其特定功能的其他任何地方。
答案 0 :(得分:1)
android:background="@layout/online"
使用此行,您可以将线性布局的背景设置为res/layout/
文件夹中的可绘制形状。
可绘制资源,例如shape drawable应放在res/drawable/
文件夹内。通过将其存储在布局文件夹中,会使您的资源的R.id值混乱。我不确切地知道为什么问题以它的方式表现出来。但是将那些online.xml和offline.xml移到res/drawable/
并删除res/layout/
内的那些应该修复它。
移动文件后,将上面的行更改为:
android:background="@drawable/online"
有关xml可绘制资源的更多信息,请参阅Drawable Resources。