ホーム > タグ > デザイン

デザイン

[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>


 
アルファ値を0にしたARBG値(#00000000など)を指定すると透明なボタンを作ることもできます。
 
 

Continue reading

Home > Tags > デザイン

Search
Feeds
Meta
人気の記事

Return to page top