diff --git a/app/src/main/java/com/gh/gamecenter/adapter/viewholder/GameDetailFuLiViewHolder.java b/app/src/main/java/com/gh/gamecenter/adapter/viewholder/GameDetailFuLiViewHolder.java deleted file mode 100644 index d0e0b17bfe..0000000000 --- a/app/src/main/java/com/gh/gamecenter/adapter/viewholder/GameDetailFuLiViewHolder.java +++ /dev/null @@ -1,45 +0,0 @@ -package com.gh.gamecenter.adapter.viewholder; - -import android.view.View; -import android.widget.LinearLayout; -import android.widget.RelativeLayout; -import android.widget.TextView; - -import com.gh.base.BaseRecyclerViewHolder; -import com.gh.base.OnListClickListener; -import com.gh.common.view.MarqueeView; -import com.gh.gamecenter.R; -import com.gh.gamecenter.entity.GameDetailEntity; - -import butterknife.BindView; - -/** - * Created by khy on 2017/3/27. - */ -public class GameDetailFuLiViewHolder extends BaseRecyclerViewHolder { - - @BindView(R.id.gamedetail_item_fuli_des) - public TextView fuliDes; - @BindView(R.id.gamedetail_qq_rl) - public RelativeLayout fuliQqRl; - @BindView(R.id.gamedetail_qq_des) - public TextView fuliQqDes; - @BindView(R.id.gamedetail_qq_btn) - public TextView fuliQqBtn; - @BindView(R.id.gamedetail_qqun_rl) - public RelativeLayout fuliQqunRl; - @BindView(R.id.gamedetail_qqun_btn) - public TextView fuliQqunBtn; - @BindView(R.id.gamedetail_qqun_des) - public TextView fuliQqunDes; - @BindView(R.id.gamedetail_item_notice) - public MarqueeView filiNotice; - @BindView(R.id.gamedetail_item_notice_ll) - public LinearLayout filiNoticeLl; - - public GameDetailFuLiViewHolder(View itemView,OnListClickListener listClickListener) { - super(itemView, listClickListener); - fuliQqBtn.setOnClickListener(this); - fuliQqunBtn.setOnClickListener(this); - } -} diff --git a/app/src/main/java/com/gh/gamecenter/adapter/viewholder/GameDetailGameTagViewHolder.java b/app/src/main/java/com/gh/gamecenter/adapter/viewholder/GameDetailGameTagViewHolder.java deleted file mode 100644 index d0764e17d4..0000000000 --- a/app/src/main/java/com/gh/gamecenter/adapter/viewholder/GameDetailGameTagViewHolder.java +++ /dev/null @@ -1,23 +0,0 @@ -package com.gh.gamecenter.adapter.viewholder; - -import androidx.recyclerview.widget.RecyclerView; -import android.view.View; - -import com.gh.base.BaseRecyclerViewHolder; -import com.gh.gamecenter.R; - -import butterknife.BindView; - -/** - * Created by khy on 2017/3/28. - */ -public class GameDetailGameTagViewHolder extends BaseRecyclerViewHolder { - - @BindView(R.id.gamedetail_gametag_rv) - public RecyclerView gametagRv; - - public GameDetailGameTagViewHolder(View itemView) { - super(itemView); - } - -} diff --git a/app/src/main/java/com/gh/gamecenter/adapter/viewholder/GameDetailIntroViewHolder.java b/app/src/main/java/com/gh/gamecenter/adapter/viewholder/GameDetailIntroViewHolder.java deleted file mode 100644 index 697433faba..0000000000 --- a/app/src/main/java/com/gh/gamecenter/adapter/viewholder/GameDetailIntroViewHolder.java +++ /dev/null @@ -1,35 +0,0 @@ -package com.gh.gamecenter.adapter.viewholder; - -import android.view.View; -import android.widget.ImageView; -import android.widget.RelativeLayout; -import android.widget.TextView; - -import androidx.recyclerview.widget.RecyclerView; - -import com.gh.base.BaseRecyclerViewHolder; -import com.gh.gamecenter.R; - -import butterknife.BindView; - -/** - * Created by LGT on 2016/9/8. - */ -public class GameDetailIntroViewHolder extends BaseRecyclerViewHolder { - - @BindView(R.id.gamedetail_item_intro_gallery) - public RecyclerView introGallery; - @BindView(R.id.gamedetail_item_intro_content) - public TextView introContent; - @BindView(R.id.gamedetail_item_intro_expand_rl) - public RelativeLayout expandRl; - @BindView(R.id.gamedetail_item_intro_expand_iv) - public ImageView expandIv; - @BindView(R.id.gamedetail_gametag_rv) - public RecyclerView tagRecyclerView; - - public GameDetailIntroViewHolder(View itemView) { - super(itemView); - } - -} diff --git a/app/src/main/java/com/gh/gamecenter/adapter/viewholder/GameDetailLibaoViewHolder.java b/app/src/main/java/com/gh/gamecenter/adapter/viewholder/GameDetailLibaoViewHolder.java deleted file mode 100644 index f6350f0cd8..0000000000 --- a/app/src/main/java/com/gh/gamecenter/adapter/viewholder/GameDetailLibaoViewHolder.java +++ /dev/null @@ -1,26 +0,0 @@ -package com.gh.gamecenter.adapter.viewholder; - -import androidx.recyclerview.widget.RecyclerView; -import android.view.View; -import android.widget.RelativeLayout; - -import com.gh.base.BaseRecyclerViewHolder; -import com.gh.gamecenter.R; - -import butterknife.BindView; - -/** - * Created by khy on 2016/12/14. - */ -public class GameDetailLibaoViewHolder extends BaseRecyclerViewHolder { - - @BindView(R.id.gamedetail_item_libao_gallery) - public RecyclerView libaoRv; - @BindView(R.id.gamedetail_item_open_list) - public RelativeLayout openList; - - public GameDetailLibaoViewHolder(View itemView) { - super(itemView); - } - -} diff --git a/app/src/main/java/com/gh/gamecenter/adapter/viewholder/GameDetailPluginViewHolder.java b/app/src/main/java/com/gh/gamecenter/adapter/viewholder/GameDetailPluginViewHolder.java deleted file mode 100644 index f6b361b070..0000000000 --- a/app/src/main/java/com/gh/gamecenter/adapter/viewholder/GameDetailPluginViewHolder.java +++ /dev/null @@ -1,36 +0,0 @@ -package com.gh.gamecenter.adapter.viewholder; - -import android.view.View; -import android.widget.ImageView; -import android.widget.TextView; - -import androidx.recyclerview.widget.RecyclerView; - -import com.gh.base.BaseRecyclerViewHolder; -import com.gh.gamecenter.R; - -import butterknife.BindView; - -/** - * Created by LGT on 2016/9/8. - */ -public class GameDetailPluginViewHolder extends BaseRecyclerViewHolder { - - @BindView(R.id.gamedetail_plugin_rv) - public RecyclerView gameDetailPluginRv; - @BindView(R.id.gamedetail_plugin_open_list) - public View gamedetailPluginOpen; - @BindView(R.id.gamedetail_plugin_title) - public TextView gamedetailPluginTitle; - @BindView(R.id.gamedetail_plugin_expand_iv) - public ImageView gamedetailPluginExpandIv; - @BindView(R.id.gamedetail_plugin_link_tv) - public TextView gamedetailPluginLinkTv; - @BindView(R.id.gamedetail_plugin_link_iv) - public View gamedetailPluginLinkIv; - - public GameDetailPluginViewHolder(View itemView) { - super(itemView); - } - -} diff --git a/app/src/main/java/com/gh/gamecenter/adapter/viewholder/GameDetailServerViewHolder.java b/app/src/main/java/com/gh/gamecenter/adapter/viewholder/GameDetailServerViewHolder.java deleted file mode 100644 index f78b73879b..0000000000 --- a/app/src/main/java/com/gh/gamecenter/adapter/viewholder/GameDetailServerViewHolder.java +++ /dev/null @@ -1,19 +0,0 @@ -package com.gh.gamecenter.adapter.viewholder; - -import com.gh.base.BaseRecyclerViewHolder; -import com.gh.base.OnListClickListener; -import com.gh.gamecenter.databinding.GamedetailItemServerBinding; -import com.gh.gamecenter.entity.GameDetailEntity; - -/** - * Created by khy on 2017/3/28. - */ -public class GameDetailServerViewHolder extends BaseRecyclerViewHolder { - - public GamedetailItemServerBinding binding; - - public GameDetailServerViewHolder(GamedetailItemServerBinding binding, OnListClickListener listClickListener) { - super(binding.getRoot(), listClickListener); - this.binding = binding; - } -} diff --git a/app/src/main/java/com/gh/gamecenter/adapter/viewholder/PlatformViewHolder.java b/app/src/main/java/com/gh/gamecenter/adapter/viewholder/PlatformViewHolder.java deleted file mode 100644 index 0b682b08d1..0000000000 --- a/app/src/main/java/com/gh/gamecenter/adapter/viewholder/PlatformViewHolder.java +++ /dev/null @@ -1,39 +0,0 @@ -package com.gh.gamecenter.adapter.viewholder; - -import android.view.View; -import android.widget.ImageView; -import android.widget.ProgressBar; -import android.widget.TextView; - -import com.facebook.drawee.view.SimpleDraweeView; -import com.gh.base.BaseRecyclerViewHolder; -import com.gh.gamecenter.R; - -import butterknife.BindView; - -/** - * Created by LGT on 2016/9/27. - */ -public class PlatformViewHolder extends BaseRecyclerViewHolder { - - - @BindView(R.id.download_item_tv_name) - public TextView mDownloadItemTvName; - @BindView(R.id.download_item_progressbar) - public ProgressBar mDownloadItemProgressbar; - @BindView(R.id.download_item_tv_status) - public TextView mDownloadItemTvStatus; - @BindView(R.id.download_item_iv_pic) - public SimpleDraweeView mDownloadItemIvPic; - @BindView(R.id.download_item_tv_hint) - public TextView mDownloadItemTvHint; - @BindView(R.id.download_item_open_collection) - public ImageView mDownloadItemOpenCollection; - @BindView(R.id.download_item_colse_collection) - public ImageView mDownloadItemColseCollection; - - public PlatformViewHolder(View itemView) { - super(itemView); - } - -} diff --git a/app/src/main/java/com/gh/gamecenter/newsdetail/NewsDetailNewsMoreViewHolder.java b/app/src/main/java/com/gh/gamecenter/newsdetail/NewsDetailNewsMoreViewHolder.java deleted file mode 100644 index c08ab28c09..0000000000 --- a/app/src/main/java/com/gh/gamecenter/newsdetail/NewsDetailNewsMoreViewHolder.java +++ /dev/null @@ -1,23 +0,0 @@ -package com.gh.gamecenter.newsdetail; - -import android.view.View; -import android.widget.LinearLayout; - -import com.gh.base.BaseRecyclerViewHolder; -import com.gh.gamecenter.R; - -import butterknife.BindView; - -/** - * Created by LGT on 2016/9/13. - */ -public class NewsDetailNewsMoreViewHolder extends BaseRecyclerViewHolder { - - @BindView(R.id.newsdetail_item_ll_news_more) - public LinearLayout newsMoreLl; - - public NewsDetailNewsMoreViewHolder(View itemView) { - super(itemView); - } - -} diff --git a/app/src/main/java/com/gh/gamecenter/suggest/SuggestTypeViewHolder.java b/app/src/main/java/com/gh/gamecenter/suggest/SuggestTypeViewHolder.java deleted file mode 100644 index 0a3cbd7870..0000000000 --- a/app/src/main/java/com/gh/gamecenter/suggest/SuggestTypeViewHolder.java +++ /dev/null @@ -1,25 +0,0 @@ -package com.gh.gamecenter.suggest; - -import android.view.View; -import android.widget.ImageView; -import android.widget.TextView; - -import com.gh.base.BaseRecyclerViewHolder; -import com.gh.gamecenter.R; - -import butterknife.BindView; - -/** - * Created by khy on 2017/3/31. - */ -public class SuggestTypeViewHolder extends BaseRecyclerViewHolder { - - @BindView(R.id.suggest_type_icon) - public ImageView icon; - @BindView(R.id.suggest_type_tv) - public TextView type; - - public SuggestTypeViewHolder(View itemView) { - super(itemView); - } -} diff --git a/app/src/main/res/drawable-hdpi/clean_apk_icon.png b/app/src/main/res/drawable-hdpi/clean_apk_icon.png deleted file mode 100644 index 683f76a8ef..0000000000 Binary files a/app/src/main/res/drawable-hdpi/clean_apk_icon.png and /dev/null differ diff --git a/app/src/main/res/drawable-hdpi/collection_colse.webp b/app/src/main/res/drawable-hdpi/collection_colse.webp deleted file mode 100644 index db3e90be5b..0000000000 Binary files a/app/src/main/res/drawable-hdpi/collection_colse.webp and /dev/null differ diff --git a/app/src/main/res/drawable-hdpi/collection_open.webp b/app/src/main/res/drawable-hdpi/collection_open.webp deleted file mode 100644 index 50140290d2..0000000000 Binary files a/app/src/main/res/drawable-hdpi/collection_open.webp and /dev/null differ diff --git a/app/src/main/res/drawable-hdpi/concern_select_false.webp b/app/src/main/res/drawable-hdpi/concern_select_false.webp deleted file mode 100644 index 4c62b495b8..0000000000 Binary files a/app/src/main/res/drawable-hdpi/concern_select_false.webp and /dev/null differ diff --git a/app/src/main/res/drawable-hdpi/concern_select_true.webp b/app/src/main/res/drawable-hdpi/concern_select_true.webp deleted file mode 100644 index 6bd17cb05d..0000000000 Binary files a/app/src/main/res/drawable-hdpi/concern_select_true.webp and /dev/null differ diff --git a/app/src/main/res/drawable-hdpi/login_auto_dn.webp b/app/src/main/res/drawable-hdpi/login_auto_dn.webp deleted file mode 100644 index 280592c92d..0000000000 Binary files a/app/src/main/res/drawable-hdpi/login_auto_dn.webp and /dev/null differ diff --git a/app/src/main/res/drawable-hdpi/login_auto_up.webp b/app/src/main/res/drawable-hdpi/login_auto_up.webp deleted file mode 100644 index 74456af9ae..0000000000 Binary files a/app/src/main/res/drawable-hdpi/login_auto_up.webp and /dev/null differ diff --git a/app/src/main/res/drawable-xhdpi/login_password_unfocused.webp b/app/src/main/res/drawable-xhdpi/login_password_unfocused.webp deleted file mode 100644 index b479ad0c4c..0000000000 Binary files a/app/src/main/res/drawable-xhdpi/login_password_unfocused.webp and /dev/null differ diff --git a/app/src/main/res/drawable-xhdpi/login_phone_unfocused.png b/app/src/main/res/drawable-xhdpi/login_phone_unfocused.png deleted file mode 100644 index 7a9e750fa8..0000000000 Binary files a/app/src/main/res/drawable-xhdpi/login_phone_unfocused.png and /dev/null differ diff --git a/app/src/main/res/drawable-xhdpi/logo_black.webp b/app/src/main/res/drawable-xhdpi/logo_black.webp deleted file mode 100644 index 475c65c66f..0000000000 Binary files a/app/src/main/res/drawable-xhdpi/logo_black.webp and /dev/null differ diff --git a/app/src/main/res/drawable-xhdpi/menu_ic_question_concern_select.webp b/app/src/main/res/drawable-xhdpi/menu_ic_question_concern_select.webp deleted file mode 100644 index 036701097d..0000000000 Binary files a/app/src/main/res/drawable-xhdpi/menu_ic_question_concern_select.webp and /dev/null differ diff --git a/app/src/main/res/drawable-xhdpi/menu_ic_question_concern_unselect.webp b/app/src/main/res/drawable-xhdpi/menu_ic_question_concern_unselect.webp deleted file mode 100644 index 7f9a56a06d..0000000000 Binary files a/app/src/main/res/drawable-xhdpi/menu_ic_question_concern_unselect.webp and /dev/null differ diff --git a/app/src/main/res/drawable-xhdpi/menu_more_report.webp b/app/src/main/res/drawable-xhdpi/menu_more_report.webp deleted file mode 100644 index 526c2b1a74..0000000000 Binary files a/app/src/main/res/drawable-xhdpi/menu_more_report.webp and /dev/null differ diff --git a/app/src/main/res/drawable/checkbox_style.xml b/app/src/main/res/drawable/checkbox_style.xml deleted file mode 100644 index 3de6c05f47..0000000000 --- a/app/src/main/res/drawable/checkbox_style.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/app/src/main/res/layout/amway_comment_item.xml b/app/src/main/res/layout/amway_comment_item.xml index fff8100cc9..cc1207e685 100644 --- a/app/src/main/res/layout/amway_comment_item.xml +++ b/app/src/main/res/layout/amway_comment_item.xml @@ -164,7 +164,6 @@ app:layout_constraintBottom_toBottomOf="@id/userNameTv" app:layout_constraintLeft_toRightOf="@id/userNameTv" app:layout_constraintTop_toTopOf="@id/userNameTv" - tools:src="@drawable/logo_black" tools:visibility="visible" /> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/app/src/main/res/layout/collection_comunity_article_item.xml b/app/src/main/res/layout/collection_comunity_article_item.xml index dc58fac470..ad5130abb9 100644 --- a/app/src/main/res/layout/collection_comunity_article_item.xml +++ b/app/src/main/res/layout/collection_comunity_article_item.xml @@ -103,7 +103,6 @@ app:layout_constraintLeft_toRightOf="@id/user_name" app:layout_constraintRight_toLeftOf="@+id/tv_badge_name" app:layout_constraintTop_toTopOf="@id/user_name" - fresco:src="@drawable/logo_black" fresco:visibility="visible" /> + android:visibility="gone" /> - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/app/src/main/res/layout/dialog_new_answer_hint.xml b/app/src/main/res/layout/dialog_new_answer_hint.xml deleted file mode 100644 index 93befb0eda..0000000000 --- a/app/src/main/res/layout/dialog_new_answer_hint.xml +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/app/src/main/res/layout/fm_concern.xml b/app/src/main/res/layout/fm_concern.xml deleted file mode 100644 index 117ec7617d..0000000000 --- a/app/src/main/res/layout/fm_concern.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/app/src/main/res/layout/fm_install.xml b/app/src/main/res/layout/fm_install.xml deleted file mode 100644 index 4484ae90e5..0000000000 --- a/app/src/main/res/layout/fm_install.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/app/src/main/res/layout/fm_search_history.xml b/app/src/main/res/layout/fm_search_history.xml deleted file mode 100644 index ae4344384c..0000000000 --- a/app/src/main/res/layout/fm_search_history.xml +++ /dev/null @@ -1,100 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/app/src/main/res/layout/followers_or_fans_item.xml b/app/src/main/res/layout/followers_or_fans_item.xml index 76258e38b9..07486b32c9 100644 --- a/app/src/main/res/layout/followers_or_fans_item.xml +++ b/app/src/main/res/layout/followers_or_fans_item.xml @@ -122,8 +122,7 @@ android:visibility="gone" app:layout_constraintBottom_toBottomOf="@id/user_name" app:layout_constraintLeft_toRightOf="@id/user_name" - app:layout_constraintTop_toTopOf="@id/user_name" - tools:src="@drawable/logo_black" /> + app:layout_constraintTop_toTopOf="@id/user_name" /> - - - - - - - - - - - - - \ No newline at end of file diff --git a/app/src/main/res/layout/fragment_ask_search.xml b/app/src/main/res/layout/fragment_ask_search.xml deleted file mode 100644 index 6f5e1ccdff..0000000000 --- a/app/src/main/res/layout/fragment_ask_search.xml +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/app/src/main/res/layout/fragment_ask_selectgame.xml b/app/src/main/res/layout/fragment_ask_selectgame.xml deleted file mode 100644 index b238362adf..0000000000 --- a/app/src/main/res/layout/fragment_ask_selectgame.xml +++ /dev/null @@ -1,35 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/app/src/main/res/layout/fragment_collection.xml b/app/src/main/res/layout/fragment_collection.xml deleted file mode 100644 index a8302e549f..0000000000 --- a/app/src/main/res/layout/fragment_collection.xml +++ /dev/null @@ -1,65 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/app/src/main/res/layout/fragment_comment_list.xml b/app/src/main/res/layout/fragment_comment_list.xml deleted file mode 100644 index 25feac92f4..0000000000 --- a/app/src/main/res/layout/fragment_comment_list.xml +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/app/src/main/res/layout/fragment_download.xml b/app/src/main/res/layout/fragment_download.xml deleted file mode 100644 index 6ae09d8eb2..0000000000 --- a/app/src/main/res/layout/fragment_download.xml +++ /dev/null @@ -1,92 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/app/src/main/res/layout/fragment_file_send.xml b/app/src/main/res/layout/fragment_file_send.xml deleted file mode 100644 index 8b5e397f49..0000000000 --- a/app/src/main/res/layout/fragment_file_send.xml +++ /dev/null @@ -1,65 +0,0 @@ - - - -