私は相対レイアウトでシンプルなカードを使用しています。 相対レイアウトで使用できますか?はいの場合はどうですか?Android Studioで相対レイアウトでcardViewを使用できますか?
-2
A
答えて
1
次のようにRelativeLayout内部CardViewを使用する場合:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:background="@android:color/black"
android:layout_height="match_parent">
<android.support.v7.widget.CardView
....>
<....>//Imagine a TextView here
<....>
</android.support.v7.widget.CardView>
</RelativeLayout>
、あなたは正しい方法でcardview内の要素をarrrageすることはできません。ホルダーとしてCardViewを想像要するに
、あなたはそれが正しい方法例えば
に動作させるためにCardView内部のレイアウトを使用する必要があります:
は<android.support.v7.widget.CardView
....>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:background="@android:color/black"
android:layout_height="match_parent">
<....>//Imagine a TextView here
<....>
</RelativeLayout>
</android.support.v7.widget.CardView>
1
はい、我々は従ってください使用することができますコード:
<!-- About Panel -->
<android.support.v7.widget.CardView
android:id="@+id/cv_About"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/cv_Help"
android:layout_gravity="center"
android:elevation="3dp"
app:cardCornerRadius="0dp"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="@dimen/pad_20dp">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:text="@string/about"
android:textColor="@color/dimblack"
android:id="@+id/tvAbout"
/>
</RelativeLayout>
</android.support.v7.widget.CardView>
乾杯!
関連する問題
- 1. 相対レイアウトAndroid
- 2. Android - 相対レイアウト
- 3. Androidでの相対レイアウトの問題
- 4. Android Nougatでの相対レイアウトの割合
- 5. Androidレイアウトのデザイン:LinearLayoutと相対レイアウトの使用
- 6. 相対レイアウトを使用し、リアルタイムでレイアウトを制約する場合
- 7. リストビューのAndroid相対レイアウト
- 8. フレームレイアウト内で相対レイアウトを使用する方法
- 9. アンドロイドでのレイアウトの拡大(相対レイアウト)
- 10. 相対レイアウトでレイアウトを作成
- 11. Androidでグライドを使用して背景イメージを相対レイアウトに設定する
- 12. Androidの相対レイアウトはどれくらい信頼できますか?
- 13. Androidレイアウトでの絶対サイズと相対サイズの混在 - 方法
- 14. xamarinフォームで相対レイアウトを使用するのは悪いですか?
- 15. 相対レイアウト
- 16. Android scrollviewはランドスケープモードの相対レイアウトではありません
- 17. チタンモバイル相対レイアウト
- 18. Androidスタジオ相対レイアウトを相対レイアウトの周りに円で描く方法を教えてください。
- 19. 相対レイアウトでは、alignParentBottomが使用されていますが、同じことを自分のコードの制約レイアウトで使用できますか?
- 20. robots.txtに相対サイトマップURLを使用できますか?
- 21. 見解が私のレイアウトである超える相対レイアウトで
- 22. 相対レイアウトでのテキストビューの順番を変更:Android
- 23. 相対レイアウトとマージン?
- 24. オンボードの相対レイアウト
- 25. ビューを相対レイアウトに追加できません
- 26. ImageButtonはアンドロイドアプリの相対レイアウトで問題
- 27. XML相対レイアウト
- 28. 相対的なレイアウトの問題/ android
- 29. Androidのレイアウト - 相対的なフレーム
- 30. 相対的レイアウトでImageViewをプログラム的に調整できない
um、 'RelativeLayout'に入れてください。何を求めているのですか? –
CardViewはViewGroupに過ぎません。通常のViewGroupのように、他のビューグループで使用できます。 –