- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我正在尝试在另一个 RecyclerView 中实现水平滚动的 RecyclerView,这意味着父 RecyclerView(垂直滚动)和子 RecyclerView(水平滚动)在父 RecyclerView 中。我提到了几个关于这个要求的问题,并从这个问题中找到了更好的解决方案 How to have a ListView/RecyclerView inside a parent RecyclerView?并成功实现。在子适配器的布局文件编辑后,子 RecyclerView 的滚动被禁用。
这是我的代码,这是父 fragment 。
public class MarketFragment extends Fragment {
private String log = "abcpappaHomeFragment";
private Button loadMore ;
private ArrayList<ProductCategoryBean> productCategoryList=null;
private ProductCategoryService productCategoryService;
private RecyclerView.Adapter mAdapter;
private RecyclerView mRecyclerView;
private LinearLayoutManager mLayoutManager;
public MarketFragment() {
// Required empty public constructor
}
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,Bundle savedInstanceState) {
productCategoryService = new ProductCategoryService();
productCategoryList =(ArrayList<ProductCategoryBean>)productCategoryService.getAllCategories();
View rootView = inflater.inflate(R.layout.market_fragment, container, false);
mRecyclerView = (RecyclerView)rootView.findViewById(R.id.market_recycle_list);
mRecyclerView.setHasFixedSize(true);
mLayoutManager = new LinearLayoutManager(getContext());
mRecyclerView.setLayoutManager(mLayoutManager);
mAdapter = new MarketRecyclerAdapter(getContext(),productCategoryList,this);
mRecyclerView.setAdapter(mAdapter);
return rootView;
}
@Override
public void onAttach(Activity activity) {
super.onAttach(activity);
}
@Override
public void onDetach() {
super.onDetach();
}
}
这是布局文件
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:tools="http://schemas.android.com/tools"
tools:context="bodhiinfo.abcpappa.activity.MarketFragment">>
<android.support.v7.widget.RecyclerView
android:id="@+id/market_recycle_list"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="4dp" />
父 RecyclerView 的适配器类
public class MarketRecyclerAdapter extends RecyclerView.Adapter<MarketRecyclerAdapter.ViewHolder> {
private Context context;
private List<ProductCategoryBean> productCategoryList=null;
private List<ProductBean> productDetailList=null;
private RecyclerView.Adapter mAdapter;
public MarketFragment marketFragment;
// private marketList
public MarketRecyclerAdapter(Context context,List<ProductCategoryBean> productCategoryList,MarketFragment marketFragment){
this.context = context;
this.productCategoryList =(ArrayList<ProductCategoryBean>) productCategoryList;
this.marketFragment = marketFragment;
}
@Override
public ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
View v = LayoutInflater.from(parent.getContext()).inflate(R.layout.market_fragment_row, parent, false);
ViewHolder viewHolder = new ViewHolder(v,context);
return viewHolder;
}
@Override
public void onBindViewHolder(ViewHolder viewHolder, int position) {
ProductCategoryBean productCategoryBean =(ProductCategoryBean)productCategoryList.get(position);
viewHolder.product_category_name_id.setText(productCategoryBean.getUtxt_product_category());
ProductService productService = new ProductService();
productDetailList = (ArrayList<ProductBean>)productService.getProductDetailsByCategoryId(productCategoryBean.getPki_product_category_id()+"");
viewHolder.product_recycle_list.setHasFixedSize(false);
viewHolder.mLayoutManager = new ChildCustomLinearLayoutManager(context,LinearLayoutManager.HORIZONTAL,false);
viewHolder.product_recycle_list.setLayoutManager(viewHolder.mLayoutManager);
mAdapter = new MarketRowRecyclerAdapter(context,productDetailList);
viewHolder.product_recycle_list.setAdapter(mAdapter);
}
@Override
public int getItemCount() {
return productCategoryList.size();
}
public static class ViewHolder extends RecyclerView.ViewHolder{
public TextView product_category_name_id;
public RecyclerView product_recycle_list;
public ChildCustomLinearLayoutManager mLayoutManager;
public Context context;
public View view;
public ClipData.Item currentItem;
public ViewHolder(final View itemView,final Context context) {
super(itemView);
this.context = context;
product_category_name_id = (TextView)itemView.findViewById(R.id.product_category_name_id);
product_recycle_list =(RecyclerView)itemView.findViewById(R.id.product_recycle_list);
itemView.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
}
});
}
}
}
父 RecyclerView 适配器的布局
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context="bodhiinfo.abcpappa.activity.MarketFragment">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<!-- linear layout for market heading row-->
<LinearLayout
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/market_heading_raw"
android:layout_marginTop="25dp">
<TextView
android:id="@+id/product_category_name_id"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/market_heading"
android:layout_weight="0.7"
android:layout_gravity="left"
android:gravity="left"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="View More.."
android:layout_weight="0.3"
android:layout_gravity="right"
android:gravity="right"
/>
</LinearLayout>
<android.support.v7.widget.RecyclerView
android:id="@+id/product_recycle_list"
android:orientation="horizontal"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
</LinearLayout>
</RelativeLayout>
子 RecyclerView 适配器
public class MarketRowRecyclerAdapter extends RecyclerView.Adapter<MarketRowRecyclerAdapter.ViewHolder> {
private List<ProductBean> productList;
private Context context;
MarketRowRecyclerAdapter(Context context,List<ProductBean> productList){
this.productList =(ArrayList<ProductBean>)productList;
this.context = context;
}
@Override
public ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
View v = LayoutInflater.from(parent.getContext()).inflate(R.layout.market_product_image_view, parent, false);
ViewHolder viewHolder = new ViewHolder(v,context);
return viewHolder;
}
@Override
public void onBindViewHolder(ViewHolder viewHolder, int position) {
ProductBean productBean=(ProductBean)productList.get(position);
ImageCacheManager imageCacheManager= ImageCacheManager.INSTANCE;
ImageLoader imageLoader=imageCacheManager.getImageLoader();
viewHolder.market_product_image_id.setImageUrl("http://www.ps4home.com/wp-content/uploads/2013/10/Mad-Catz-F.R.E.Q.5-Headset-for-PC-and-Mac-Black.jpg", imageLoader);
viewHolder.product_text_id.setText(productBean.getTxt_product_name());
viewHolder.product_actual_price_id.setText("Rs :"+productBean.getTxt_product_actual_price());
viewHolder.product_actual_price_id.setPaintFlags(viewHolder.product_actual_price_id.getPaintFlags() | Paint.STRIKE_THRU_TEXT_FLAG);
viewHolder.product_app_price_id.setText("Rs :" + productBean.getTxt_product_price_in_app());
}
@Override
public int getItemCount() {
return productList.size();
}
public static class ViewHolder extends RecyclerView.ViewHolder{
public TextView product_text_id;
public TextView product_actual_price_id;
public TextView product_app_price_id;
public NetworkImageView market_product_image_id;
public Context context;
public View view;
public ViewHolder(final View itemView,final Context context) {
super(itemView);
this.context = context;
product_text_id = (TextView)itemView.findViewById(R.id.product_text_id);
product_actual_price_id= (TextView)itemView.findViewById(R.id.product_actual_price_id);
product_app_price_id= (TextView)itemView.findViewById(R.id.product_app_price_id);
market_product_image_id = (NetworkImageView)itemView.findViewById(R.id.market_product_image_id);
itemView.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
}
});
}
}
}
子适配器布局文件
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="vertical"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingRight="10dp"
android:paddingLeft="10dp"
tools:context="bodhiinfo.abcpappa.activity.MarketFragment">
<FrameLayout
android:id="@+id/market_product1_image_frame_id"
android:layout_width="150dp"
android:layout_height="150dp">
<com.android.volley.toolbox.NetworkImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/market_product_image_id"/>
<TextView
android:id="@+id/product_text_id"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textColor="@color/text_light"
android:layout_gravity="bottom"
android:text="@string/product_one"
android:background="@drawable/textbackgrounds"/>
</FrameLayout>
<TextView
android:id="@+id/product_actual_price_id"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textColor="@color/text_dark_black"
android:text="@string/product_one"
android:layout_below="@+id/market_product1_image_frame_id"/>
<TextView
android:id="@+id/product_app_price_id"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/product_one"
android:textColor="@color/text_dark_black"
android:layout_below="@+id/product_actual_price_id"/>
</LinearLayout>
ChildCustomLinearLayoutManager 与 pptang 在上述问题中提供的类相同。其实我是android的新手,如果你遇到过这种问题,请告诉我我犯的错误。谢谢大家。
最佳答案
如果 wrap_content 且未设置明确的最小高度,RecyclerView 会根据其 subview 自行调整大小。在您的 child RecyclerView 中,您必须考虑如下更改
<android.support.v7.widget.RecyclerView
android:id="@+id/product_recycle_list"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
你正在使用水平recyclerView所以设置
如果您想了解更多关于此问题的信息,请访问 https://code.google.com/p/android/issues/detail?id=74772它会帮助你。
关于布局编辑后 Android RecyclerView 滚动不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34542567/
我添加了编辑按钮 self.navigationItem.rightBarButtonItem = [[[UIBarButtonItem alloc] initWithBarButto
我试图在运行时“干净地”更改 UIBarButtonItem 文本,以便可以切换编辑/完成模式。然而,每次我在运行时更改 title 属性时,动画看起来都很笨拙。我正在寻找模拟联系人应用程序中“编辑/
这个问题不太可能帮助任何 future 的访问者;它只与一个小的地理区域、一个特定的时间点或一个非常狭窄的情况有关,这些情况并不普遍适用于互联网的全局受众。为了帮助使这个问题更广泛地适用,visit
我想更改 INI 文件中的一些值。不幸的是,我在 2 个不同的部分有键,它们共享相同的名称但需要不同的值。我的代码使用 Get-IniContent函数来自 PsIni . 示例 INI 文件: [P
是否有通知或委托(delegate)方法可用于检测表格 View 何时进入编辑状态? 我想要做的是检测表正在编辑,然后显示一个额外的行,上面写着“添加新项目”或类似的东西。 我尝试在加载 View C
例如,我试图从 svg 读取样式块,我可以获取类型但不能获取字符串。 $svgTemplate = new SimpleXMLElement($_POST['SvgTemplateImport']);
我可以使用 self.navigationItem.leftBarButtonItem = self.editButtonItem; 通过按下导航面板上的编辑按钮让 UITableViewContro
我正在使用markitup!作为 Markdown 编辑器( example )。 目前,我需要按预览按钮(绿色勾号)来显示预览面板。 我希望自动显示预览 - 我怎样才能实现这一点? 最佳答案 我没有
我的处境非常糟糕。我丢失了源代码,客户需要在应用程序中进行一些更改。想想一个编辑程序集的例子:Test.dll,然后添加代码行,最后重新编译它 所以我的问题是: -可以这样做吗? -如果可能的话,什么
我使用了一些 JavaScript 来通过按钮更改段落元素的内容。它工作正常,但我还想让按钮控制标题和附图。给我指明正确的方向吗? 这是我用来更改段落的代码 .... 谢谢! 最佳答案 尝试将 Ja
是否有任何 Emacs lisp 插件可以让我轻松地在 yaml 文件中编辑或输入数据。 例如: --- sample yaml file ---Name : Addr :City :State:Zi
新手Java问题,我确定已经解决了,但是在任何地方都找不到解决方案:( 我想使用这里包含的java程序http://sourceforge.net/projects/ant-tibco/files/
在我的网页中,我使用了 gridview。在这个 GridView 中,它显示了一组用户信息。我刚刚从智能标签菜单中添加了一个按钮。我的要求是当我点击每个用户对应的按钮时,它会重定向到另一个页面并显示
我想在没有任何框架的情况下直接在 JS 中编辑一个 SVG 文件。 基本上我有一个 SVG 主文件,其中应该包含一些子 SVG。 我已经在 Ajax 中检索了这些子项的内容,但我想将它们插入到 SVG
我有我的 ViewModel,我有我的 Controller 可以从 ViewModel 正确显示,但是我不确定如何使 ViewModel 可编辑,以便将编辑后的数据发送回模型。我只想编辑 Order
我不确定我的做法是否正确。 IplImage *dog_1 = cvCreateImage(cvGetSize(oriImg), oriImg->depth, oriImg->nChannels);
我有一个创建二维码的网络服务器。在此过程中,我得到一个 BarcodeQRCode 对象,我可以从中获取图像 (.getImage())。 我不确定如何将这张图片发回给客户。我不想将它保存在文件中,而
已编辑:我的第一个问题解决了,但又出现了另一个问题,只提供了一个用户 ID。这是修改后的代码的屏幕截图。 回到表格,用户将按下编辑按钮,这样他就可以编辑问题并给出适当的操作.. 我的上表代码是这样的:
据我了解,我无法通过重新启动服务器来清除 MySQL 查询缓存。 每次运行 sql 时,我都试图获得与第一个代码块类似的结果 1-这是在重新启动 Apache 和 MySQL 之前(第一次使用这些查询
我正在创建一个页面来搜索项目,然后能够编辑/更新它。当它只返回一个结果时我能够做到这一点,但当它给我多个结果时我只能编辑最后一项。下面是我的代码: ....... $dj =$_POST[djnum]
我是一名优秀的程序员,十分优秀!