Android开发记录

来源:互联网 发布:战锤全面战争优化补丁 编辑:程序博客网 时间:2024/06/08 07:04
</pre><h2 class="html" name="code">一种Button实现click的方式:</h2><pre class="html" name="code"></pre><p>xml中的控件定义:</p><p><pre class="html" name="code">    <Button        android:id="@+id/button_Add_New_Patient_Confirm"        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:layout_column="0"        android:layout_columnSpan="4"        android:layout_gravity="center_horizontal"        android:layout_marginTop="70dp"        android:layout_row="11"        android:onClick="onClick_Add_New_Patient_Confirm"        android:padding="20dp"        android:text="@string/Confirm"        android:textSize="23sp" />

Activity.java中的定义:

public void onClick_Add_New_Patient_Confirm(View view) {Toast.makeText(this, "!!!", Toast.LENGTH_SHORT).show();}

View view is necessary!


0 0