[解決済み] Androidレイアウトでテキストビューを左右の端に揃える
2022-04-23 08:46:32
質問
Androidを始めています。簡単なレイアウトを作るのに苦労しています。
を使用したいと思います。
LinearLayout
を2つ配置し
TextViews
を一列に並べます。1つの
TextView
を左側に、もう一方を右側に配置します(CSS の float:left, float:right に相当します)。
それは可能ですか、それとも別の
ViewGroup
または、さらにレイアウトをネストすることで実現できますか?
今のところ、こんな感じです。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" android:layout_height="fill_parent"
android:orientation="horizontal" android:padding="10sp">
<TextView android:id="@+id/mytextview1" android:layout_height="wrap_content" android:text="somestringontheleftSomestring" android:layout_width="wrap_content"/>
<TextView android:id="@+id/mytextview2" android:layout_height="wrap_content" android:ellipsize="end"
android:text="somestringontheright" android:layout_width="wrap_content"/>
</LinearLayout>
解決方法は?
を使用します。
RelativeLayout
と
layout_alignParentLeft
と
layout_alignParentRight
:
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/RelativeLayout01"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="10dp">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:id="@+id/mytextview1"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:id="@+id/mytextview2"/>
</RelativeLayout>
また
を使うべきでしょう。
dip
(または
dp
ではなく
sp
をレイアウトしてください。
.
sp
は、テキスト設定と画面密度を反映するため、通常はテキストアイテムのサイズ変更にのみ使用されます。
関連
-
[解決済み] Androidのgravityとlayout_gravityの違いは何ですか?
-
aapt2エラー:ログを確認する(具体的な原因の探り方)
-
GIF、Lottie、SVGA
-
ArrayAdapter は、リソース ID が TextView であることが必要です。
-
Androidで、onTouchEventでダブルクリックを実装し、ダブルクリックイベントとして判定する方法
-
問題 ---- Android ---- ActivityManager: Error: アクティビティクラス{xx/xx.MainActivity}が存在しない
-
android bluetooth--Bluetooth on、検索、ペアリング、接続
-
Android Get set image.setImageResource(R.drawable.xxx) リソース
-
[解決済み] Androidのソフトキーボードをプログラムで閉じる/隠すにはどうすればよいですか?
-
[解決済み】「px」、「dip」、「dp」、「sp」の違いは?
最新
-
nginxです。[emerg] 0.0.0.0:80 への bind() に失敗しました (98: アドレスは既に使用中です)
-
htmlページでギリシャ文字を使うには
-
ピュアhtml+cssでの要素読み込み効果
-
純粋なhtml + cssで五輪を実現するサンプルコード
-
ナビゲーションバー・ドロップダウンメニューのHTML+CSSサンプルコード
-
タイピング効果を実現するピュアhtml+css
-
htmlの選択ボックスのプレースホルダー作成に関する質問
-
html css3 伸縮しない 画像表示効果
-
トップナビゲーションバーメニュー作成用HTML+CSS
-
html+css 実装 サイバーパンク風ボタン
おすすめ
-
AndroidStudio reports Could not resolve all artifacts for configuration ':app:classpath'.
-
android E/RecyclerView﹕ アダプタが接続されていないため、レイアウトをスキップする。
-
エラーが発生しました。ArrayAdapter は、リソース ID が TextView である必要があります。
-
android exception - aapt.exe has stopped working.
-
GoogleMapと連携し、位置情報の取得が可能
-
アンドロイドスタジオソフトウェア使用詳細説明書
-
アプリの実行エラー。ターゲットデバイスが見つからない問題
-
Android Studio http://schemas.android.com/apk/res/android 「URIが登録されていません」の解決方法について
-
Android studio 制約レイアウト ConstraintLayout
-
[解決済み] Android TextView テキストの両端揃え