在res目錄下的drawable-mdpi建立xml文件shape.xml,如下圖所示:
為沿河等地區用戶提供了全套網頁設計制作服務,及沿河網站建設行業解決方案。主營業務為成都網站制作、成都網站設計、沿河網站設計,以傳統方式定制建設網站,并提供域名空間備案等一條龍服務,秉承以專業、用心的態度為用戶提供真誠的服務。我們深信只要達到每一位用戶的要求,就會得到認可,從而選擇與我們長期合作。這樣,我們也可以走得更遠!
<?xml version="1.0" encoding="UTF-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle"> <!-- 填充的顏色 --> <solid android:color="#FFFFFF" /> <!-- 設置按鈕的四個角為弧形 --> <!-- android:radius 弧形的半徑 --> <corners android:radius="5dip" /> <!-- padding:Button里面的文字與Button邊界的間隔 --> <padding android:left="10dp" android:top="10dp" android:right="10dp" android:bottom="10dp" /> </shape>
在android:background="@drawable/shape"就使用了shape.xml資源
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent" > <TextView android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="@string/hello" /> <Button android:id="@+id/roundButton" android:text=" 圓角按鈕 " android:layout_width="wrap_content" android:layout_height="wrap_content" android:background="@drawable/shape" /> </LinearLayout>
<?xml version="1.0" encoding="utf-8"?> <resources> <string name="hello">Hello World, RoundButtonDemoActivity!</string> <string name="app_name">RoundButtonDemo</string> </resources>
package com.android.RoundButtonDemo.activity; import android.app.Activity; import android.os.Bundle; import android.view.View; import android.view.View.OnClickListener; import android.widget.Button; import android.widget.Toast; public class RoundButtonDemoActivity extends Activity { Button roundButton; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); roundButton=(Button)findViewById(R.id.roundButton); //使用匿名類注冊Button事件 roundButton.setOnClickListener(new OnClickListener() { public void onClick(View v) { Toast.makeText(RoundButtonDemoActivity.this, "你點擊了圓角按鈕",Toast.LENGTH_LONG).show(); } }); } }
分享名稱:Android開發學習筆記:圓角的Button
文章位置:http://m.kartarina.com/article8/igccop.html
成都網站建設公司_創新互聯,為您提供用戶體驗、網站制作、域名注冊、網站收錄、云服務器、面包屑導航
聲明:本網站發布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創新互聯