瀏覽代碼

New : free trial button to creative store card

Shan-PC\Shan 7 年之前
父節點
當前提交
afb498a948

+ 17 - 0
src/main/java/com/kdanmobile/kdan_others_library_for_android/card/CreativeStorePromoteCard.java

@@ -17,8 +17,12 @@ public class CreativeStorePromoteCard extends LinearLayout {
 
     private OnClickListener onClickImageListener;
 
+    private OnClickListener onClickFreeTrialListener;
+
     private Button viewNow;
 
+    private Button freeTrial;
+
     public CreativeStorePromoteCard(Context context) {
         super(context);
         initView();
@@ -36,11 +40,13 @@ public class CreativeStorePromoteCard extends LinearLayout {
 
     public void setButtonColor(int color) {
         viewNow.setTextColor(color);
+        freeTrial.setTextColor(color);
     }
 
     private void initView() {
         View view = inflate(getContext(), R.layout.widget_creative_store_promote_card, this);
         viewNow = (Button) view.findViewById(R.id.button_promote_card_creative_store_view_now);
+        freeTrial = (Button) view.findViewById(R.id.button_promote_card_creative_store_free_trial);
         ImageView imageView = (ImageView) view.findViewById(R.id.image_view_promote_card_creative_store_view);
 
         viewNow.setOnClickListener(view1 -> {
@@ -58,6 +64,13 @@ public class CreativeStorePromoteCard extends LinearLayout {
                 intentToCreativeStore();
             }
         });
+
+        freeTrial.setOnClickListener(view13 -> {
+            if (onClickFreeTrialListener != null) {
+                onClickFreeTrialListener.onClick(view13);
+            }
+        });
+
     }
 
     public void setOnClickViewNowListener(OnClickListener onClickViewNowListener) {
@@ -68,6 +81,10 @@ public class CreativeStorePromoteCard extends LinearLayout {
         this.onClickImageListener = onClickImageListener;
     }
 
+    public void setOnClickFreeTrialListener(OnClickListener onClickFreeTrialListener) {
+        this.onClickFreeTrialListener = onClickFreeTrialListener;
+    }
+
     private void intentToCreativeStore() {
         Uri uri = Uri.parse("https://creativestore.kdanmobile.com/subscription/creativity365?utm_source=Website&utm_campaign=KdanWeb_NL_C365&utm_medium=NL");
         Intent intent = new Intent(Intent.ACTION_VIEW, uri);

+ 25 - 7
src/main/res/layout/widget_creative_store_promote_card.xml

@@ -44,13 +44,31 @@
             android:textColor="@android:color/black"
             android:textSize="14sp" />
 
-        <Button
-            android:id="@+id/button_promote_card_creative_store_view_now"
-            style="@style/Widget.AppCompat.Button.Borderless"
+        <RelativeLayout
             android:layout_width="wrap_content"
-            android:layout_height="wrap_content"
-            android:layout_margin="@dimen/card_view_actions_margin"
-            android:text="@string/creative_store_card_view"
-            android:textColor="?attr/colorAccent" />
+            android:layout_height="wrap_content">
+
+            <Button
+                android:id="@+id/button_promote_card_creative_store_view_now"
+                style="@style/Widget.AppCompat.Button.Borderless"
+                android:layout_width="wrap_content"
+                android:layout_height="wrap_content"
+                android:layout_margin="@dimen/card_view_actions_margin"
+                android:text="@string/creative_store_card_view"
+                android:textColor="?attr/colorAccent" />
+
+            <Button
+                android:id="@+id/button_promote_card_creative_store_free_trial"
+                style="@style/Widget.AppCompat.Button.Borderless"
+                android:layout_toRightOf="@+id/button_promote_card_creative_store_view_now"
+                android:layout_width="wrap_content"
+                android:layout_height="wrap_content"
+                android:layout_marginTop="@dimen/card_view_actions_margin"
+                android:layout_marginBottom="@dimen/card_view_actions_margin"
+                android:text="@string/free_trail"
+                android:textColor="?attr/colorAccent" />
+
+        </RelativeLayout>
+
     </LinearLayout>
 </android.support.v7.widget.CardView>

+ 1 - 0
src/main/res/values-ja-rJP/strings.xml

@@ -20,6 +20,7 @@
     <string name="creative_store_card_description">クリエイティブストアでアプリ情報と関連アクセサリーを見つかり、あなただけのモバイル体験をアップグレードしましょう。</string>
     <string name="creative_store_card_description_adonit">特別なオファー  Creativity 365 年間プランをご購入すると、さらにAdonitのDash 3 極細速記スタイラスをギフトに!</string>
     <string name="creative_store_card_view">さらに詳しく</string>
+    <string name="free_trail">無料お試しサービス</string>
     <string name="home_promote_card_pdfreader_subtext">閲覧、注釈付け、PDFファイル作成に使える、世界で最も人気のあるPDFアプリの一つです。</string>
     <string name="home_promote_card_tyr_now_btn_text">今すぐ試す</string>
     <string name="home_promote_card_ad_subtext">静止画を活き活きとしたアニメーションにします。Animation Desk を利用して、あなたのデバイスで素晴らしいアニメーションを作成してください。</string>

+ 1 - 0
src/main/res/values-zh-rCN/strings.xml

@@ -19,6 +19,7 @@
     <string name="creative_store_card_description">逛凯钿创意商城,获取更多相关产品和服务,不断升级和完善使用体验!</string>
     <string name="creative_store_card_description_adonit">年费限定特惠! 订阅尊贵特权套餐年包,免费赠送 Adonit  Dash 3 极细速写笔。</string>
     <string name="creative_store_card_view">更多信息</string>
+    <string name="free_trail">免费试用</string>
     <string name="home_promote_card_pdfreader_subtext">PDF阅读、注释及管理,移动端PDF阅读优选APP!</string>
     <string name="home_promote_card_tyr_now_btn_text">开始试用</string>
     <string name="home_promote_card_ad_subtext">无限创意,尽在手绘动画!</string>

+ 1 - 0
src/main/res/values-zh-rTW/strings.xml

@@ -19,6 +19,7 @@
     <string name="creative_store_card_description">到凱鈿創意商城尋找週邊配件和升級服務,讓您的行動體驗更臻完善!</string>
     <string name="creative_store_card_description_adonit">年費限定優惠! 訂閱 Creativity 365 年費方案,免費送 Adonit Dash 3 極細速寫筆。</string>
     <string name="creative_store_card_view">前往商城</string>
+    <string name="free_trail">免費試用</string>
     <string name="home_promote_card_pdfreader_subtext">全球最受歡迎的PDF Reader。</string>
     <string name="home_promote_card_tyr_now_btn_text">立刻試用</string>
     <string name="home_promote_card_ad_subtext">無限創意,盡在手繪動畫!</string>

+ 1 - 0
src/main/res/values/strings.xml

@@ -22,6 +22,7 @@
     <string name="creative_store_card_description">Search out shop for Kdan related accessories and service to upgrade and complete you mobile experience.</string>
     <string name="creative_store_card_description_adonit">Special Offer! Get a free Adonit Dash 3 stylus when subscribed to Creativity 365 Annual Plan.</string>
     <string name="creative_store_card_view">View now</string>
+    <string name="free_trail">Free Trial</string>
     <string name="home_promote_card_pdfreader_title">PDF Reader</string>
     <string name="home_promote_card_pdfreader_subtext">One of the world’s most popular PDF apps for viewing, annotating and managing PDFs.</string>
     <string name="home_promote_card_tyr_now_btn_text">Try now</string>