这是我的Android应用程序的代码:
XML:
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignParentEnd="true">
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="los"
android:id="@+id/button"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:onClick="run"/>
<ProgressBar
style="?android:attr/progressBarStyleLarge"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/progressBar"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_marginTop="91dp"/>
主要活动:
public class MainActivity extends AppCompatActivity {
boolean visible = true;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
public void run() {
ProgressBar progressBar1 = (ProgressBar) findViewById(R.id.progressBar);
visible = !visible;
if (visible){
progressBar1.setVisibility(View.VISIBLE);
}
if (!visible){
progressBar1.setVisibility(View.INVISIBLE);
}
}
}
应用程序应该在单击按钮时隐藏并显示进度条。但是,单击按钮时应用程序崩溃。
答案 0 :(得分:0)
下面:
template = jinja_environment.get_template('main.html')
self.response.out.write(template.render({"keyList":json.dumps(range(5)),
"valueList":json.dumps(["A", "B"])}
))
public void run()
方法必须采用android:onClick
类型的一个参数,因此请将其更改为:
View