1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="100dp"
- android:background="@drawable/jmad_banner_bg"
- android:orientation="horizontal">
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="horizontal">
- <com.Jcat.Adsdk.view.RoundImageView
- android:id="@+id/app_icon"
- android:layout_width="65dp"
- android:layout_height="65dp"
- android:layout_alignParentLeft="true"
- android:layout_centerVertical="true"
- android:layout_marginLeft="20dp"
- android:background="@drawable/bt_icon_bg"
- android:src="@drawable/jmad_img_placeholder"
- />
- <LinearLayout
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerVertical="true"
- android:layout_toRightOf="@+id/app_icon"
- android:layout_marginLeft="20dp"
- android:orientation="vertical">
- <TextView
- android:id="@+id/mainTitleView"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="奇迹MU"
- android:textColor="#000000"
- android:textSize="16sp"
- />
- <LinearLayout
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginTop="5dp">
- <ImageView style="@style/jmad_star_style" />
- <ImageView style="@style/jmad_star_style" />
- <ImageView style="@style/jmad_star_style" />
- <ImageView style="@style/jmad_star_style" />
- <ImageView style="@style/jmad_star_style" />
- </LinearLayout>
- <TextView
- android:id="@+id/tv_starCount"
- android:layout_width="180dp"
- android:layout_height="wrap_content"
- android:layout_marginTop="5dp"
- android:singleLine="true"
- android:text="PC中的经典,强势回归"
- android:textColor="#646161"
- android:textSize="14sp" />
- </LinearLayout>
- <Button
- android:id="@+id/download_btn"
- android:layout_width="90dp"
- android:layout_height="36dp"
- android:background="@drawable/jmad_button_bg"
- android:text="立即下载"
- android:textColor="@color/jmfont_white"
- android:layout_alignParentRight="true"
- android:layout_centerVertical="true"
- android:layout_marginRight="20dp"
- android:textSize="14sp" />
- </RelativeLayout>
- </LinearLayout>
|