[解決済み] wrap_contentでRelativeLayoutがフルスクリーンになってしまう
2022-07-04 19:23:28
質問
FOOBARZは、どのエレメントも
layout_height="fill_parent"
つまり、すべての要素が高さに対してwrap_contentになっているのですが?
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<TextView
android:id="@+id/feed_u"
android:layout_width="50dip"
android:layout_height="50dip"
android:layout_marginLeft="5dip"
android:scaleType="centerCrop"
android:drawableTop="@android:drawable/presence_online"
android:text="U" />
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toRightOf="@id/feed_u">
<ImageView
android:id="@+id/feed_h"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@android:drawable/btn_minus" />
<ImageView
android:id="@+id/feed_ha"
android:layout_toLeftOf="@id/feed_h"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@android:drawable/btn_plus" />
<TextView
android:id="@+id/feed_t"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Title">
</TextView>
<TextView
android:id="@+id/feed_a"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Band"
android:layout_below="@id/feed_t">
</TextView>
<TextView
android:id="@+id/feed_s"
android:layout_below="@id/feed_a"
android:text="S"
android:layout_height="wrap_content"
android:layout_width="wrap_content">
</TextView>
<TextView
android:id="@+id/feed_tm"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
android:text="FOOBARZ"
android:layout_height="wrap_content"
android:layout_width="wrap_content">
</TextView>
</RelativeLayout>
</RelativeLayout>
どのように解決するのですか?
からの
RelativeLayout
doc:
クラスの概要
子要素の位置を、互いにまたは親要素との関係で記述することができるレイアウト。
RelativeLayoutのサイズとその子の位置の間に循環的な依存関係を持つことはできないことに注意してください。 例えば、高さがWRAP_CONTENTに設定され、子がALIGN_PARENT_BOTTOMに設定されているRelativeLayoutを持つことはできません。
これはまさにあなたのケースです。RelativeLayoutはそれを行うことはできません。
関連
-
[解決済み] RelativeLayoutにおける幅の割合(%)。
-
[解決済み] 既存のカスタムテーマでXMLのアクティビティのタイトルバーを非表示にする方法
-
[解決済み] Androidでフルスクリーンアクティビティは?
-
[解決済み】Android UserManager.isUserAGoat()の正しい使用例?)
-
[解決済み】ConstraintLayoutとRelativeLayoutの違いについて
-
[解決済み] Androidでビットマップから円形領域を切り取る方法
-
[解決済み] 開発者コンソールでのベータ版/アルファ版テストについての説明が必要です。
-
[解決済み] Android Studioで複数のデバイスでアプリを自動実行する
-
[解決済み] Fragment ActionBarCompatの内部からgetSupportActionBarを取得する。
-
[解決済み] Androidの縦長(回転)ラベルについて
最新
-
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 実装 サイバーパンク風ボタン
おすすめ
-
[解決済み] Androidでビットマップから円形領域を切り取る方法
-
[解決済み] 開発者コンソールでのベータ版/アルファ版テストについての説明が必要です。
-
[解決済み] エラー Android Studioで名前'default'を持つ構成が見つかりません。
-
[解決済み] Uri.getPath()で実パスを取得する。
-
[解決済み] BackStackでFragment Animationを逆再生するには?
-
[解決済み] Android Studioで複数のデバイスでアプリを自動実行する
-
[解決済み] EclipseでADTを更新するにはどうしたらいいですか?
-
[解決済み] Genymotion、Mavericksで「Unable to load VirtualBox engine. VBoxは正しくセットアップされています。
-
[解決済み] Androidでユーザーの非アクティブを検出する方法
-
[解決済み] Android端末のシリアルナンバーを調べるには?