我想在一個活動中顯示兩個活動....一個顯示在上方和第二個顯示中間顯示標籤(關於圖庫提要) 都有顯示在同一屏幕 我使用actionbarSherlock圖書館如何在一個活動中打開不同活動(活動和中間顯示標籤佈局)
這裏是我的佈局
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:orientation="vertical"
android:background="#FFFFFF" >
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<ImageView
android:id="@+id/imageView1"
android:layout_width="200dp"
android:layout_height="200dp"
android:layout_marginLeft="63dp"
android:layout_marginTop="19dp"
android:padding="20dp"
android:scaleType="centerCrop"
android:src="@drawable/loader" />
</RelativeLayout>
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:background="#00ffffff" >
<ImageView
android:id="@+id/image_frm"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_marginBottom="300dp"
android:src="@drawable/img_frame" />
<RelativeLayout
android:id="@+id/relativeLayout1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBottom="@+id/image_frm" >
</RelativeLayout>
<RelativeLayout
android:id="@+id/relativeLayout2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_marginLeft="29dp"
android:layout_toRightOf="@+id/relativeLayout1" >
</RelativeLayout>
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBottom="@+id/image_frm"
android:layout_alignLeft="@+id/relativeLayout1" >
</RelativeLayout>
</RelativeLayout>
<RelativeLayout
android:id="@+id/relativelayout"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:background="#00ffffff" >
<TextView
android:id="@+id/userfullname"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_marginTop="2dp"
android:text="UsFn"
android:textColor="#DF0B0B"
android:textSize="30dip" />
<Button
android:id="@+id/logout"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_below="@+id/userfullname"
android:layout_marginTop="118dp"
android:text="Log Out" />
<Button
android:id="@+id/btn_edit"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBottom="@+id/logout"
android:layout_alignParentLeft="true"
android:layout_marginLeft="15dp"
android:background="@drawable/btn_green"
android:text="Edit " />
我想表明在這個佈局 選項卡,請幫助我,我真的很迷惑和Android 感謝上很新的幫助
嘗試使用更具體的語言爲您的問題:「如何*巢*一項活動內的活動」 – Todd