この記事は2020年08月05日に投稿しました。
目次
リンク
1. はじめに
こんにちは、iOSのエディタアプリPWEditorの開発者の二俣です。
今回は業務で使用しているAndroidで垂直方向に配置する方法についてです。
2. Androidで垂直方向に配置する
Androidで垂直方向に配置するには、LinearLayoutを使用し、orientationにverticalを指定します。
実装例
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="リンゴ"/> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="バナナ"/> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="オレンジ"/> </LinearLayout>
実行結果
API Refernece
LinearLayoutクラス
3. おわりに
前回
は水平方向に配置する方法として、LinearLayoutを紹介しました。
LinearLayoutはorientationを指定しないと、デフォルトで水平方向に配置されます
垂直方向に配置する場合は、orientationにverticalを指定します。
リンク
紹介している一部の記事のコードは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