2016-04-26 17 views
-1

以下のレイアウトを作成する際に問題が発生しました。どうすればいいの?私はCustomViewを使用するか、イメージを使用する必要がありますか? 私はCustomeViewをどうすればいいのですか? レイアウトを実現するためのカスタムビューのリファレンスまたはアイディアを提案してください。 私は実際に何をすべきか分からず、私が立ち往生していたよりも、customViewでonDrawメソッドのPathを使用しようとしました。おかげさまで アンドロイドでレイアウトを作成する方法(添付画像参照)

enter image description here

+0

欲しいものを達成することができるはずです。 – Haroon

+0

FrameLayoutを使用します。 –

答えて

0

1.

compile 'com.android.support:cardview-v7:23.2.0' 

2.カードビューの依存関係を追加し、XMLの下に取り、あなたがそれを橋渡ししている場所に置きます。 RecyclerViewCardViewを使用するとします。上記のレイアウトには、2つのImageViewsButtonなどを使用します。画像をデザインし、レイアウトを確認します。あなたはあなたがカードのレイアウトを使用し、画像やボタン例えばビューを利用して、そのイベントを行うことができます 例えば

<?xml version="1.0" encoding="utf-8"?> 
<android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android" 
xmlns:app="http://schemas.android.com/apk/res-auto" 
xmlns:card_view="http://schemas.android.com/apk/res-auto" 
android:layout_width="match_parent" 
android:layout_height="wrap_content" 
android:layout_gravity="center" 
app:cardCornerRadius="2dp" 
app:cardElevation="1dp" 
app:cardUseCompatPadding="true" 
card_view:cardPreventCornerOverlap="false"> 
<RelativeLayout 
    android:id="@+id/ll1" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:background="@color/icons" 
    android:padding="@dimen/margin_small"> 

    <TextView 
     android:id="@+id/postTitle" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_alignParentLeft="true" 
     android:layout_alignParentTop="true" 
     android:layout_marginBottom="@dimen/margin_tiny" 
     android:maxLines="2" 
     android:text="TITLE OF THE POST" 
     android:textColor="@color/primary_text" 
     android:textSize="@dimen/font_regular" 
     android:textStyle="bold" 
     app:typeface="roboto_bold"/> 


    <ImageView 
     android:id="@+id/imageView" 
     android:layout_width="match_parent" 
     android:layout_height="160dp" 
     android:background="@color/icons" 
     android:focusable="false" 
     android:scaleType="centerCrop" 
     android:layout_below="@+id/postTitle" /> 

</RelativeLayout> 

関連する問題