この記事は2020年08月02日に投稿しました。
目次
リンク
1. はじめに
こんにちは、iOSのエディタアプリPWEditorの開発者の二俣です。
今回は業務で使用しているAndroidで水平区切り線を使用する方法についてです。
2. Androidで水平区切り線を使用する
Androidで水平区切り線を使用するには、以下のような実装になります。
水平区切り線自体は、デザインモードでPalette→Widgets→Holizontal 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="vertical"> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="リンゴ"/> <!-- 水平の区切り線を配置します。 --> <View android:id="@+id/divider1" android:layout_width="match_parent" android:layout_height="1dp" 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="match_parent" android:layout_height="1dp" android:background="?android:attr/listDivider" /> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="オレンジ"/> </LinearLayout>
実行結果
3. おわりに
見た目の関係で区切り線を配置したくなることがあると思います。
Androidでは区切り線が用意されているようです。
リンク
紹介している一部の記事のコードは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