-
-
Save mezdour/7386d1d3c39d4762e1304b431c4de6fb to your computer and use it in GitHub Desktop.
طريقة اضافة زر عند الضغط عليه يظهر عبارة
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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