29 lines
994 B
XML
29 lines
994 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/imageButton"
|
|
android:layout_width="128px"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:gravity="center"
|
|
android:background="@drawable/bg_button_selector"
|
|
android:focusable="true"
|
|
android:clickable="true"
|
|
android:focusableInTouchMode="true"
|
|
android:padding="16dp">
|
|
|
|
<ImageView
|
|
android:id="@+id/buttonImage"
|
|
android:layout_width="128px"
|
|
android:layout_height="128px"
|
|
android:src="@drawable/callbutton"
|
|
android:layout_marginBottom="8dp" />
|
|
|
|
<TextView
|
|
android:id="@+id/buttonText"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="전화걸기?"
|
|
android:textColor="@color/colorWhite"
|
|
android:textSize="24sp"
|
|
android:textAlignment="center" />
|
|
</LinearLayout> |