wordでシールのラベルを作成

業務効率Up

wordでシールのラベルを作成(自分の会社名など、よく送付する会社など)

表題の通りです。
以下詳細方法です。

①wordを開く
②メニューバーの「差し込み文書」から「ラベル」を選択
「ラベル」を選択すると、「宛名ラベル作成
③まず、どういう型で作成するか決定するために、「オプション」を選択します。
④「オプション」を選択すると、「ラベルオプション」が表示されるので、「新しいラベル」を選択
⑤ラベルの製造元を「Avery A4/A5」に設定し、製品番号を「L7162」に設定し、「OK」を選択し、「新規文書」を選択
⑥下記を入力
(文字の大きさ「2」に設定して、少し空白を空ける)
〒221-0835
神奈川県横浜市神奈川区・・・
(文字の大きさ「5」に設定して、少し空白を空ける)
株式会社・・・

⑦印刷を行えばOK!

Android レイアウト 中身が違っても均等な幅のボックスを作る

Android

Android レイアウト 中身が違っても均等な幅のボックスを作る

中々言葉で表現するのは難しいので、下記を見てほしいのですが、(弊社で開発しているSmart動態管理というソフトの一画面です)

device-smart_location-before.png

下の部分の「到着」「休憩」は同じ文字数だからよいのですが、上の「空車」「積込済」というのは字数が違いますよね。
なので、ボタンの幅がそろわず、見た目がよくないです。

均等な幅を実現するために android:layout_weight というパラメーターがありますが、これを指定していても、android:layout_width=”wrap_content”などがあると、android:layout_widthの方が優先されてしまうんですね。

この部分のソースコードはこんな感じです。

        <LinearLayout
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:paddingTop="10dp"
            android:paddingBottom="5dp" >
           <Button
	            android:id="@+id/vacant_button"
	            android:layout_width="wrap_content"
 	            android:layout_height="60dp"
                    android:layout_weight="0.5"
 	            android:text="@string/vacant"
	            android:textSize="24sp"
	            android:background = "@drawable/vacant_button"
	            android:layout_marginRight="5dp"
                     />
            <Button
	            android:id="@+id/occupied_button"
	            android:layout_width="wrap_content"
	            android:layout_height="60dp"
                    android:layout_weight="0.5"
	            android:text="@string/occupied"
	            android:textSize="24sp"
	            android:background = "@drawable/occupied_button"
                 />
         </LinearLayout>

android:layout_widthをなくすと、NullPointerEcceptionでエラーになります。
かといって、可変にしたいので、絶対的な大きさにもしたくない…
テーブルレイアウトは面倒…
そんな場合は、android:layout_width=”0dp”として回避しています。

    //変更後のソースコード
        <LinearLayout
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:paddingTop="10dp"
            android:paddingBottom="5dp" >
 
           <Button
 	            android:id="@+id/vacant_button"
 	            android:layout_width="0dp"
 	            android:layout_height="60dp"
                    android:layout_weight="0.5"
                    android:text="@string/vacant"
 	            android:textSize="24sp"
 	            android:background = "@drawable/vacant_button"
 	            android:layout_marginRight="5dp"
 	             />
            <Button
 	            android:id="@+id/occupied_button"
 	            android:layout_width="0dp"
 	            android:layout_height="60dp"
                    android:layout_weight="0.5"
 	            android:text="@string/occupied"
 	            android:textSize="24sp"
 	            android:background = "@drawable/occupied_button"
                 />
  	    
        </LinearLayout>

修正後の画面はこんな感じになります。

device-smart_location.png