2016-04-11 10 views
-6

アンドロイドスタジオでこの写真と同様のカスタムレイアウトを作成するのには助けが必要です。Androidカスタムレイアウト(スネークバー)

enter image description here

+0

しようと示唆していますどこ画像ですか..? –

+0

私は自分の質問を編集しました –

+1

あなたの問題は何ですか? –

答えて

0

あなたに同じレイアウトを与えるコードは以下の通りであったが、私はあなたがあなたの自己

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:app="http://schemas.android.com/apk/res-auto" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:orientation="vertical"> 

    <android.support.v7.widget.CardView 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:layout_margin="10dp" 
     app:cardBackgroundColor="@color/white"> 

     <LinearLayout 

      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      android:orientation="horizontal"> 

      <ImageView 
       android:layout_width="0dp" 
       android:layout_height="wrap_content" 
       android:layout_gravity="center" 
       android:layout_weight="1" 
       android:src="@drawable/trophy1" /> 

      <LinearLayout 
       android:layout_width="0dp" 
       android:layout_height="wrap_content" 
       android:layout_weight="2" 
       android:orientation="vertical"> 

       <TextView 
        android:layout_width="match_parent" 
        android:layout_height="wrap_content" 
        android:padding="5dp" 
        android:text="Segual Hotel Cox's bazar" 
        android:textColor="#2D32FF" 
        android:textSize="15sp" /> 

       <RatingBar 
        android:layout_width="match_parent" 
        android:layout_height="wrap_content" /> 

       <TextView 
        android:layout_width="match_parent" 
        android:layout_height="wrap_content" 
        android:text="Start From :" /> 

       <TextView 
        android:layout_width="match_parent" 
        android:layout_height="wrap_content" 
        android:text="2500BDT-2500BDT" /> 

       <ImageView 
        android:layout_width="wrap_content" 
        android:layout_height="wrap_content" 
        android:src="@drawable/lable" /> 
      </LinearLayout> 
     </LinearLayout> 
    </android.support.v7.widget.CardView> 
</LinearLayout> 
+1

あなたは彼にスプーンフィードをしたので、彼はあなたの自己を試すことを提案しています。同様の質問には決して答えてはなりません。 –

関連する問題