2014-04-01 56 views
-11

我想上面放enter image description here上的兩條佈局一半的任何觀點及半下來如何使UI例如iOS在Android的

+2

你應該在開發過程中詢問具體的問題,不是問爲整個解決方案。 – mihail

+1

你可以使用合併佈局這.. – Vikram

+1

嘿傢伙只是告訴我如何做到這一點,如果你不知道那麼就不需要干涉任何一個問題 –

回答

0

試試這個

<RelativeLayout 
    android:layout_width="200dip" 
    android:layout_height="200dip" > 

    <ImageView 
     android:id="@+id/imgProfPic" 
     android:layout_width="fill_parent" 
     android:layout_height="fill_parent" 
     android:background="@drawable/prof_image" > 
    </ImageView> 

    <ImageView 
     android:id="@+id/imgCamera" 
     android:layout_width="50dip" 
     android:layout_height="50dip" 
     android:layout_centerInParent="true" 
     android:background="@drawable/icon_cam" > 
    </ImageView> 
</RelativeLayout> 

注:你可以改變高度寬度params按照您的要求。

0

嘗試這種情況:

<ImageView 
      android:id="@+id/tile_1_2" 
      android:layout_width="fill_parent" 
      android:layout_height="fill_parent" 
      android:layout_margin="5dp" 
      android:padding="5dp" 
      android:scaleType="fitCenter" 
      android:adjustViewBounds="false" 
      android:layout_weight="1.0" 
      android:src="@drawable/take_picture" 
      android:background="@drawable/compound_content_bg" 
      /> 
+0

謝謝很多關於它 –

+0

如果它是爲你工作,然後標記爲一個正確的答案,其他人會很容易找到一個解決方案:) –

2

我想你可以將整個佈局分爲2組的框架layout.One佈局內將包含佈局(即,一個在上方和下方的)。可以爲此使用相對佈局。

在相對佈局結束後給出imageview或任何你想要的。確保你的imageview僅在framelayout內(其中2個佈局放置在相對佈局中)。將imageview的屬性設置爲android:layout_gravity =「中心|左」或任何適合您需求的內容。

結構將會是這樣的。

< FrameLayout 
....... 
.....> 
< RelativeLayout 
..... 
....> 
your layout 1 
your layout 2 
</RelativeLayout> 

< ImageView 
.... 
.... /> 
</ FrameLayout> 

我不確定,但您絕對可以試試看。

+0

非常感謝親愛 –

1

OK傢伙告訴我一個問題,什麼是錯我的問題,使他們不喜歡我

終於得到了解決

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:orientation="vertical" > 

    <RelativeLayout 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     > 
<ImageView 
      android:id="@+id/imageView1" 
      android:layout_width="wrap_content" 
      android:layout_height="300dp" 
      android:layout_alignParentLeft="true" 
      android:layout_alignParentRight="true" 
      android:layout_alignParentTop="true" /> 
<ImageView 
      android:id="@+id/imageView2" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:layout_alignParentLeft="true" 
      android:layout_alignParentTop="true" 
      android:layout_marginLeft="50dp" 
      android:layout_marginTop="93dp" /> 
</RelativeLayout> 
<LinearLayout 
     android:layout_width="match_parent" 
     android:layout_height="0dp" 
     android:layout_marginTop="10dp" 
     android:layout_weight="1" 
     android:orientation="vertical" > 

     <FrameLayout 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" > 
     </FrameLayout> 
</LinearLayout 
</LinearLayout> 
+0

我不能給UA downvote .. –

+0

我不告訴你這件事,我那些誰親愛的請投票 –

相關問題