Skip to content

Instantly share code, notes, and snippets.

@mezdour
Created January 27, 2018 17:03
Show Gist options
  • Save mezdour/7386d1d3c39d4762e1304b431c4de6fb to your computer and use it in GitHub Desktop.
Save mezdour/7386d1d3c39d4762e1304b431c4de6fb to your computer and use it in GitHub Desktop.
طريقة اضافة زر عند الضغط عليه يظهر عبارة
xml:
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text=""
android:layout_margin="16dp"
android:id="@+id/messageText"
/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="16dp"
android:text="عرض الرسالة"
android:onClick="showTheMessage"
/>
</LinearLayout>
java code:
public void showTheMessage (View v){
writeTheMessage("السلام عليكم");
}
public void writeTheMessage (String msg){
TextView msgText = (TextView) findViewById(R.id.messageText);
msgText.setText(msg);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment