设置onClicklistener()在片段中不起作用

时间:2018-10-01 14:00:18

标签: android button onclicklistener

按钮@login_required def update_profile(request): prf = Profile.objects.get(user=request.user) if request.method == 'POST': user_u = UpdateUser(request.POST, instance=request.user) profile_u = UpdateProfile(request.POST, instance=prf) if user_u.is_valid() and profile_u.is_valid(): user_u.save() profile_u.save() return redirect(reverse('profile')) else: user_u = UpdateUser(instance=request.user) profile_u = UpdateProfile(instance=prf) return render(request, 'store/updateprofile.html', {'form1': user_u, 'form2': profile_u})onClick中不起作用。怎么了? id和fragment函数具有正确的语法。我不知道发生了什么。

onClickListener

2 个答案:

答案 0 :(得分:1)

更改此

import matplotlib.pyplot as plt
from matplotlib_venn import venn2
x = ["a", "b", "c", "d"]
y = ["a", "e", "f", "g"]
venn2([set(x), set(y)])
plt.show()

 return inflater.inflate(R.layout.fragment_login, container, false);

让我知道是否可行

答案 1 :(得分:0)

您无需在返回视图时再次使视图膨胀,只需在方法的初学者对其进行一次膨胀,然后在方法末尾返回该视图。

View view = inflater.inflate(R.layout.fragment_login, container, false);

return view;