-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkasus_11.xml
24 lines (22 loc) · 946 Bytes
/
kasus_11.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".Kasus11">
<Button
android:id="@+id/button_kasus_11"
android:text="CLICK ME!"
android:textColor="#FFFFFF"
android:textSize="30sp"
android:shadowColor="#FF0000"
android:shadowDx="2"
android:shadowDy="2"
android:shadowRadius="5"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintStart_toStartOf="parent"
android:onClick="showText"/>
</android.support.constraint.ConstraintLayout>