2014-07-23 69 views
-1

我想在一個活動中顯示兩個活動....一個顯示在上方和第二個顯示中間顯示標籤(關於圖庫提要) 都有顯示在同一屏幕 我使用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 感謝上很新的幫助

+0

嘗試使用更具體的語言爲您的問題:「如何*巢*一項活動內的活動」 – Todd

回答

0

一個簡單的Google Search會找到你的解決方案。片段基本上是兩種佈局,可以用很多不同的方式使用。

+0

先生,我是非常新的Android可以告訴我如何做我想要的 – user3836115

+0

閱讀關於片段通過鏈接我的答案。你的新作很棒,但我們不會爲你寫代碼。如果你使用谷歌的「碎片」或「碎片示例」,你會發現很多不同的實現方式來實現你想要做的。如果您要成爲Android開發人員,Google搜索必須成爲您最好的朋友。不要氣餒;)在我們發展的早期階段,我們都問過這樣的問題。再一次,你只需要使用谷歌。 –

相關問題