ホーム > タグ > ステートリスト
ステートリスト
[Android] ボタンの見た目をカスタマイズ
- 2012-05-12 (土)
- Android
規定のボタンデザインを使ってもいいのですが、物足りなく感じることはないでしょうか?
どうせ自作アプリを作るなら、ボタンもオリジナルの見た目にしたいですよね。
そこで、今回はボタンの見た目を変更する方法について。
背景色の変更
android:background属性に背景色を指定するだけでも見た目がガラっ(?)と変わります。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<Button
android:layout_width="100dp"
android:layout_height="40dp"
android:background="#00FF00"
android:text="Hoge" />
</LinearLayout>
- Comments: 0
- Trackbacks: 0
Home > Tags > ステートリスト
- Search
- Feeds
- Meta
- 人気の記事
