この記事は2020年08月03日に投稿しました。
目次
リンク
1. はじめに
こんにちは、iOSのエディタアプリPWEditorの開発者の二俣です。
今回は業務で使用しているAndroidで垂直区切り線を使用する方法についてです。
2. Androidで垂直区切り線を使用する
Androidで垂直区切り線を使用するには、以下のような実装になります。
垂直区切り線自体は、デザインモードでPalette→Widgets→Vertical Dividerを選択して配置します。
実装例
activity_main.xml
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="horizontal"> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="リンゴ" /> <!-- 垂直区切り線を配置します。 線として表示させる場合、layout_weightは"0"にします。 --> <View android:id="@+id/divider1" android:layout_width="1dp" android:layout_height="match_parent" android:layout_weight="0" android:background="?android:attr/listDivider" /> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="バナナ" /> <View android:id="@+id/divider2" android:layout_width="1dp" android:layout_height="match_parent" android:layout_weight="0" android:background="?android:attr/listDivider" /> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="オレンジ" /> </LinearLayout>
実行結果
3. おわりに
前回
と同じく、今回は垂直の区切り線についてです。
垂直区切り線と違い、layout_weightを"0"に設定する必要があります。
リンク
紹介している一部の記事のコードはGitlabで公開しています。
興味のある方は覗いてみてください。
私が勤務しているニューラルでは、主に組み込み系ソフトの開発を行っております。
弊社製品のハイブリッドOS [Bi-OS][Bi-OS]は高い技術力を評価されており、特に制御系や通信系を得意としています。
私自身はiOSモバイルアプリやウィンドウズアプリを得意としております。
ソフトウェア開発に関して相談などございましたら、お気軽にご連絡ください。
また一緒に働きたい技術者の方も随時募集中です。
興味がありましたらご連絡ください。
EMAIL : info-nr@newral.co.jp / m-futamata@newral.co.jp
TEL : 042-523-3663
FAX : 042-540-1688