瘋狂 Android 講義, 4/e – Button範例 P91~P92

瘋狂 Android 講義, 4/e – Button範例 P91~P92

瘋狂 Android 講義, 4/e – Button範例 P91~P92



資料來源:

    https://github.com/daichangya/book/tree/master/android
    https://pan.baidu.com/s/1d_xYJI0UQ_1tQzSj_V_NIg 提取码:70ch



文字重點摘要:

    設定按鈕 字型大小/顏色/陰影(立體),插入背景圖片(圖片按鈕/任意形狀按鈕)



XML Code

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
	android:orientation="vertical"
	android:layout_width="match_parent"
	android:layout_height="match_parent">
	<!-- 文字带阴影的按钮 -->
	<Button
		android:layout_width="wrap_content"
		android:layout_height="wrap_content"
		android:text="文字带阴影的按钮"
		android:textSize="12pt"
		android:shadowColor="#aa5"
		android:shadowRadius="1"
		android:shadowDx="5"
		android:shadowDy="5"/>
	<!-- 普通文字按钮 -->
	<Button
		android:layout_width="wrap_content"
		android:layout_height="wrap_content"
		android:background="@drawable/red"
		android:text="普通按钮"
		android:textSize="10pt"/>
	<!-- 带文字的图片按钮-->
	<Button
		android:layout_width="wrap_content"
		android:layout_height="wrap_content"
		android:background="@drawable/button_selector"
		android:textSize="11sp"
		android:text="带文字的图片按钮"/>
</LinearLayout>

發表迴響

你的電子郵件位址並不會被公開。 必要欄位標記為 *