imageview
上に整列する必要がある円形がありcardview
ますが、画像の半分の円が外側になり、cardview
画像の残りの半分の円が内側になるようにする必要がありcardview
ます。上の境界線の中心と同様に、その上cardview
に円形がimageview
存在します。
これを行うにはどうすればよいですか。ご迷惑をおかけして申し訳ありませんが、プロキシが許可しないため、画像をアップロードできません。
imageview
上に整列する必要がある円形がありcardview
ますが、画像の半分の円が外側になり、cardview
画像の残りの半分の円が内側になるようにする必要がありcardview
ます。上の境界線の中心と同様に、その上cardview
に円形がimageview
存在します。
これを行うにはどうすればよいですか。ご迷惑をおかけして申し訳ありませんが、プロキシが許可しないため、画像をアップロードできません。
これはそのように行うことができます。
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:card_view="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/activity_main"
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"
tools:context="com.simplebox.demo.MainActivity">
<android.support.v7.widget.CardView
android:id="@+id/first"
app:cardBackgroundColor="@android:color/white"
app:cardCornerRadius="@dimen/cardview_default_radius"
app:cardElevation="4dp"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="50dp"
card_view:cardUseCompatPadding="true">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="300dp"
android:background="#FFF000">
</RelativeLayout>
</android.support.v7.widget.CardView>
<ImageView
android:layout_width="100dp"
android:layout_height="100dp"
android:layout_gravity="center_horizontal"
android:background="#000000"
android:contentDescription="@null" />
</FrameLayout>
出力となります。円形の画像には円形の ImageView を使用します。
このコードを試してください
<android.support.design.widget.FloatingActionButton
android:id="@+id/btn_contacts"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="16dp"
android:scaleType="center"
android:src="@drawable/ic_contacts_36px"
app:fabSize="normal"
app:layout_anchor="@id/ll_cardView"
app:layout_anchorGravity="center|top" />
app:layout_anchor ID 名をカード ビュー ID に変更します。