0

単純なボタン(すでに親アクティビティを拡張しているため、これをフラグメントにすることはできません)とタブホストであるフラグメントアクティビティを持つアクティビティがあります。2人がビューレイアウトの画面スペースを共有することは可能ですか。:アクティビティレイアウトは次のようになります。

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/controls"
    android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
    android:id="@+id/select"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_margin="0dp"
    android:textAppearance="?android:attr/textAppearanceSmall"/>

  <LinearLayout
              android:id="@+id/control_buttons"
        android:layout_width="match_parent"
  android:layout_height="wrap_content"
  android:orientation="horizontal"
  android:gravity="center">
<ImageButton
    android:id="@+id/button1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_margin="0dp"/>
<ImageButton
    android:id="@+id/button2"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_margin="0dp"/>
   <ImageButton
    android:id="@+id/button3"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_margin="0dp"/>
 <ImageButton
    android:id="@+id/button4"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_margin="0dp"/>


 </LinearLayout>

 <LinearLayout
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  android:orientation="horizontal"
  android:gravity="center">

  <TextView
    android:id="@+id/addto"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_margin="0dp"
    android:textAppearance="?android:attr/textAppearanceSmall"/>
   <CheckBox
    android:id="@+id/addtoCheck"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_margin="0dp"/>
  </LinearLayout>

 </LinearLayout>

FragmentActivityは、4つのタブを持つタブホストであり、レイアウトは次のようになります。

<TabHost
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/tabhost"
android:layout_width="match_parent"
android:layout_height="match_parent">

<LinearLayout
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <TabWidget
        android:id="@android:id/tabs"
        android:orientation="horizontal"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_weight="0"
        android:background="@color/coffee"/>

    <FrameLayout
        android:id="@android:id/tabcontent"
        android:layout_width="0dp"
        android:layout_height="0dp"
        android:layout_weight="0"/>

    <android.support.v4.view.ViewPager
        android:id="@+id/pager"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1"/>

</LinearLayout>

その高さの終わりにあるアクティビティが、親レイアウトの残りの高さのfragmentActivityを表示することは可能ですか?

4

1 に答える 1

1

アクティビティは、画面上のすべてのものの論理コンテナです。画面の一部をアクティビティ1で使用し、画面の別の部分をアクティビティ2で使用できるかどうかを尋ねていると思います。

いいえ、それは不可能です。

于 2013-03-18T20:36:48.797 に答える