我想上面放上的兩條佈局一半的任何觀點及半下來如何使UI例如iOS在Android的
回答
試試這個
<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按照您的要求。
嘗試這種情況:
<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"
/>
謝謝很多關於它 –
如果它是爲你工作,然後標記爲一個正確的答案,其他人會很容易找到一個解決方案:) –
我想你可以將整個佈局分爲2組的框架layout.One佈局內將包含佈局(即,一個在上方和下方的)。可以爲此使用相對佈局。
在相對佈局結束後給出imageview或任何你想要的。確保你的imageview僅在framelayout內(其中2個佈局放置在相對佈局中)。將imageview的屬性設置爲android:layout_gravity =「中心|左」或任何適合您需求的內容。
結構將會是這樣的。
< FrameLayout
.......
.....>
< RelativeLayout
.....
....>
your layout 1
your layout 2
</RelativeLayout>
< ImageView
....
.... />
</ FrameLayout>
我不確定,但您絕對可以試試看。
非常感謝親愛 –
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>
我不能給UA downvote .. –
我不告訴你這件事,我那些誰親愛的請投票 –
- 1. 如何使用相同的代碼測試ios和android的UI
- 2. 如何使用Android的UI Automator運行一組測試用例
- 3. 如何在Android UI線程
- 4. 如何使用quickblox SDK IOS例如WhatsApp
- 5. 如何在Android中的不同佈局中使用相同的UI實例
- 6. 如何使用Ios的UI自動化的XPath appium爲iOS
- 7. 如何使用onsen-ui 2.0在iOS和Android上使用平面設計?
- 8. 如何正確使用Android UI的「layout_gravity」?
- 9. 如何在使用android手機時將onsen ui中的動畫更改爲ios?
- 10. Android的等效KeyedArchiver例如iOS
- 11. iOS式Android UI庫
- 12. 如何在android中開發UI時使用原生UI?
- 13. 如何在android中實現聯繫人列表中的UI如ios
- 14. 的Android UI的例子
- 15. 如何在Android和iOS
- 16. 如何在iOS和Android
- 17. 的Android如何處理在UI
- 18. 如何使用android平板ui eluleci?
- 19. 如何從ios中的CFRunLoopRun訪問UI
- 20. 舉例WEBAPPS(在iOS與Android)
- 21. 如何在Android Studio中添加適用於Android應用的Android應用UI UI
- 22. Android UI如何對齊textviews?
- 23. 當Web UI發生變化時如何更新移動應用UI(Android和iOS)
- 24. 如何在android中爲ListView設計UI?
- 25. 如何在Android中更新UI
- 26. 如何在android中創建動態UI?
- 27. 如何在Android中設計此UI?
- 28. 如何在iOS中實現Android的getViewById?
- 29. 如何在android設計中使用類似的UI materializecss框架?
- 30. 如何在Parse-1.13.0.jar上使用Android上的ParseLogin-UI
你應該在開發過程中詢問具體的問題,不是問爲整個解決方案。 – mihail
你可以使用合併佈局這.. – Vikram
嘿傢伙只是告訴我如何做到這一點,如果你不知道那麼就不需要干涉任何一個問題 –