2013年5月18日土曜日

カスタマイズしたVIEWをXMLレイアウトで実装 サンプルコード

viewをカスタマイズして使用するには幾つか方法があります。
XMLで表記する場合は以下になります。



                                              <パッケージ名.クラス名
                                                  android:id="@+id/aaa"
                                                  android:layout_width="match_parent"
                                                  android:layout_height="wrap_content"
                                                  android:layout_gravity="top"
                                                  android:layout_weight="1.15"
                                                  android:gravity="top" >

                                              </パッケージ名.クラス名>

findViewIDを使用する場合はコンストラクタが必要です。

 public クラス名(Context context, AttributeSet attrs){
 super(context,attrs);
     public クラス名(Context context, AttributeSet attrs,int defStyle){
 super(context,attrs、defStyle);


プログラムから使用する場合はいつも通りです。

ブログ内検索キーワード、XML、独自ビュー、カスタマイズビュー

0 件のコメント:

コメントを投稿