1
A
回答
0
BASIC
CardView比ImageView的高海拔。因此,只需爲ImageView設置較高的 高程。
在這裏,我們去..
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context=".activity.Splash"
tools:showIn="@layout/activity_splash"
>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<android.support.v7.widget.CardView
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:cardUseCompatPadding="true"
android:elevation="5dp"
android:stateListAnimator="@anim/button_elevation"
android:id="@+id/one"
android:layout_marginLeft="@dimen/activity_horizontal_margin"
>
<RelativeLayout
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="@dimen/activity_horizontal_margin"
android:background="?attr/selectableItemBackground"
>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="this is just for test"
/>
</RelativeLayout>
</android.support.v7.widget.CardView>
<ImageView
android:layout_marginRight="@dimen/activity_horizontal_margin"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/cross"
android:id="@+id/two"
android:layout_centerVertical="true"
android:elevation="10dp"
/>
</RelativeLayout>
</RelativeLayout>
而且屏幕截圖....
+0
不錯的嘗試,但從最後的形象刪除海拔比這不起作用 - @AndroidHacker –
+0
解決方案沒有爲你工作...非常奇怪。 – AndroidHacker
相關問題
- 1. Android佈局如何設置特定的固定佈局高度
- 2. Android:如何在表格佈局中設置背景圖片
- 3. 佈局佈局,頂部佈局的中心背景圖片
- 4. Android動畫:將視圖設置爲父佈局的中心
- 5. 如何設置佈局重心
- 6. 如何根據URL在MVC中設置起始頁面/佈局?
- 7. android - 如何在Android 3.0中設置PreferenceActivity的自定義佈局?
- 8. 如何在佈局中設置初始焦點?
- 9. 如何在android中設置此佈局?
- 10. Android佈局設計特定自定義
- 11. 如何設置卡片佈局容器?
- 12. 中心佈局Android
- 13. 如何設置特定佈局中jpanel組件的大小?
- 14. Android圖片庫佈局設計
- 15. Android設置佈局
- 16. 在android中設置佈局
- 17. 的Android初始屏幕中心圖片
- 18. 如何設置佈局的佈局?
- 19. Android:如何設置上下文到佈局xml中的視圖?
- 20. Android - 在特定位置顯示/設置佈局
- 21. 如何在代碼中設置ImageView的佈局中心?
- 22. 如何在單頁佈局中設置固定位置圖像
- 23. 如何設置不透明的圖片作爲佈局背景
- 24. 的Android - 中心佈局
- 25. 如何設置我的佈局圖像?
- 26. 如何在grails中將特定控制器的佈局和視圖設置爲
- 27. 如何放置頁面的底部和中心的android佈局?
- 28. 的Android alertdialog設置佈局
- 29. 設置Android AlertDialog的佈局
- 30. 的Android ::設置佈局
安置自己的佈局代碼。 – AndroidHacker
你有什麼嘗試。發佈你的xml代碼 – Manishika
你想通過Recycler視圖對齊圖像的一半? – AndroidHacker