|
|
@@ -15,6 +15,7 @@ import android.view.ViewGroup;
|
|
|
import android.widget.CheckBox;
|
|
|
import android.widget.HorizontalScrollView;
|
|
|
import android.widget.ImageView;
|
|
|
+import android.widget.LinearLayout;
|
|
|
import android.widget.TextView;
|
|
|
|
|
|
import com.bumptech.glide.Glide;
|
|
|
@@ -59,6 +60,7 @@ public class BucketListWithTagDetailFragment extends FragmentBase<BucketListWith
|
|
|
private TextView textBucketTitle;
|
|
|
private ImageView imageBucket;
|
|
|
private ImageView imageChecker;
|
|
|
+ private LinearLayout layoutContainerRecyclerView;
|
|
|
|
|
|
private Tutorial tutorial;
|
|
|
|
|
|
@@ -78,6 +80,7 @@ public class BucketListWithTagDetailFragment extends FragmentBase<BucketListWith
|
|
|
textTagTitle = findViewById(R.id.text_title);
|
|
|
layoutTagContents = findViewById(R.id.layout_contents);
|
|
|
scrollTag = findViewById(R.id.scroll_tag);
|
|
|
+ layoutContainerRecyclerView = findViewById(R.id.layout_recycler_view_container);
|
|
|
layoutNothing = findViewById(R.id.layout_nothing);
|
|
|
layoutSelectedBucket = findViewById(R.id.layout_select_bucket);
|
|
|
recyclerViewBucketListDetail = findViewById(R.id.recycler_view_bucket_list_detail);
|
|
|
@@ -260,11 +263,11 @@ public class BucketListWithTagDetailFragment extends FragmentBase<BucketListWith
|
|
|
if (isVisible) {
|
|
|
setTagTitle(0);
|
|
|
layoutNothing.setVisibility(View.VISIBLE);
|
|
|
- recyclerViewBucketListDetail.setVisibility(View.GONE);
|
|
|
+ layoutContainerRecyclerView.setVisibility(View.GONE);
|
|
|
}
|
|
|
else {
|
|
|
layoutNothing.setVisibility(View.GONE);
|
|
|
- recyclerViewBucketListDetail.setVisibility(View.VISIBLE);
|
|
|
+ layoutContainerRecyclerView.setVisibility(View.VISIBLE);
|
|
|
}
|
|
|
|
|
|
}
|