1つのフレーム内に2つのframeLayoutを挿入できますか? 私はこのコードを試しても動作しません!別のフレームレイアウト内にフレームレイアウトを挿入する
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:baselineAligned="false"
android:orientation="horizontal" >
<FrameLayout
android:id="@+id/titles"
android:layout_width="0px"
android:layout_height="match_parent"
android:layout_weight="1" />
<FrameLayout
android:id="@+id/details"
android:layout_width="0px"
android:layout_height="match_parent"
android:layout_weight="2" >
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:baselineAligned="false"
android:orientation="horizontal" >
<FrameLayout
android:id="@+id/details1"
android:layout_width="0px"
android:layout_height="match_parent"
android:layout_weight="1" />
<FrameLayout
android:id="@+id/details2"
android:layout_width="0px"
android:layout_height="match_parent"
android:layout_weight="1" />
</LinearLayout>
</FrameLayout>
</LinearLayout>
1つの要素をクリックすると、detail1が印刷されます。私はdetail1が詳細の下で作成されているので、私はそれを見ることができないと思いますか?
助けてもらえますか?
私が欲しいものがあります:あなたはすべてのために幅0PXを持っている場合
これは動作しないことができます。<でframeLayout アンドロイド:ID = "@ + ID /詳細" アンドロイド:layout_width = "match_parent" アンドロイド:layout_heightは= "match_parent"> アンドロイド:layout_width = "match_parent" 作りをすべての画面で私のフレームレイアウト、android:layout_weight = "2"は動作しません –
あなたは何かをスケッチを描いて、私たちがあなたが欲しいものを見てみましょうここに投稿しないでください。 –
私は私の質問に画像に参加しました –