我将另一个布局扩展到我当前布局中的某个视图下方。
这样做是这样的:
LayoutInflater vi = (LayoutInflater) getActivity().getApplicationContext()
.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View rootView = vi.inflate(R.layout.horizontal_scroll_view, null);
horizontalScrollView = (HorizontalScrollView) rootView.findViewById(R.id.hsv_suggestions_scroll_view);
LinearLayout suggestionsContainer = (LinearLayout) horizontalScrollView.findViewById(R.id.ll_suggestions_container);
我可以确认它出现在正确的位置,因为我在一段时间后在其中添加了一些视图,它们都出现了。
我膨胀的布局是:
<HorizontalScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/hsv_suggestions_scroll_view"
android:scrollbars="none" android:layout_gravity="center_horizontal"
android:paddingTop="16dp" android:fillViewport="true"
android:layout_width="match_parent" android:layout_height="wrap_content">
<LinearLayout
android:id="@+id/ll_suggestions_container"
android:gravity="center_horizontal" android:orientation="horizontal"
android:layout_width="wrap_content" android:layout_height="wrap_content">
</LinearLayout>
只有一个HorizontalScrollView
,其中LinearLayout
为孩子。
我后面添加的视图都是TextView
个。
现在用户操作(在editText上写一些文本)后,我正在尝试滚动到该视图并突出显示它。突出显示作品。什么不起作用是滚动。
我试过了:
horizontalScrollView.postDelayed(new Runnable() {
@Override
public void run() {
horizontalScrollView.smoothScrollTo(scrollTo, 0);
}
}, 300);
其中变量scrollTo
是我将getLeft()
应用于我要滚动到的视图时得到的结果。我可以确认它需要各种值。
任何人都可以帮助我吗?
答案 0 :(得分:1)
切换到使用带有LinearLayoutManager的RecyclerView,其方向设置为Horizontal。像这样:
scroll_view.xml
<android.support.v7.widget.RecyclerView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/scrollView"
android:scrollbars="none"
android:layout_gravity="center_horizontal"
android:paddingTop="16dp"
android:fillViewport="true"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layoutManager="android.support.v7.widget.LinearLayoutManager"
android:orientation="horizontal">
<LinearLayout
android:id="@+id/scrollContainer"
android:gravity="center_horizontal"
android:orientation="horizontal"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</android.support.v7.widget.RecyclerView>
注意:此处需要layoutManager标记才能使布局膨胀。在它膨胀之后,我们也会以编程方式设置它,否则我们会得到一个例外,因为RecyclerView基本上是在它完成之前处理它。
OptionAdapter.java
public class OptionAdapter extends RecyclerView.Adapter<OptionAdapter.OptionHolder> {
private Context context;
private LayoutInflater inflater;
private ArrayList<String> options;
public OptionAdapter(Context context) {
this.context = context;
this.inflater = LayoutInflater.from(context);
options = new ArrayList<>();
}
@Override
public OptionHolder onCreateViewHolder(ViewGroup parent, int viewType) {
return new OptionHolder(inflater.inflate(R.layout.textview, parent, false));
}
@Override
public void onBindViewHolder(OptionHolder holder, int position) {
String option = options.get(position);
((TextView) holder.itemView).setText(option);
}
@Override
public int getItemCount() {
return options != null ? options.size() : 0;
}
public ArrayList<String> getOptions() {
return options;
}
public void addOption(String option, Integer index) {
if (index != null && index <= options.size()) {
options.add(index, option);
} else {
options.add(option);
}
notifyDataSetChanged();
}
public class OptionHolder extends RecyclerView.ViewHolder {
public OptionHolder(View itemView) {
super(itemView);
}
}
}
text_view.xml
<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_marginLeft="8dp"
android:layout_marginRight="8dp"
android:orientation="vertical"
android:layout_width="wrap_content"
android:layout_height="match_parent" />
设置一切
final LayoutInflater inflater = LayoutInflater.from(this);
final RecyclerView scrollView = (RecyclerView) inflater.inflate(R.layout.scroll_view, container, false);
scrollView.setLayoutManager(new LinearLayoutManager(this, LinearLayoutManager.HORIZONTAL, false));
final OptionAdapter adapter = new OptionAdapter(this);
scrollView.setAdapter(adapter);
container
这里是持有RecyclerView
的任何视图。在我的代码中,我已经在LinearLayout
中获得了它。
将视图添加到列表中
adapter.addOption("The Added One", null);
或者如果您想将其添加到列表中的特定位置。
adapter.addOption("The Added One", position);
滚动到特定位置
scrollView.smoothScrollToPosition(position);
滚动到列表中的特定项目
scrollView.smoothScrollToPosition(adapter.getOptions().indexOf("ItemText"));
希望它适合你!
答案 1 :(得分:0)
使用scrollTo()代替smoothScrollTo()。
确保你的getLeft()确实返回一个值&gt; 0;
答案 2 :(得分:0)
遇到了类似的问题。
我猜根本原因是当时UI尚未呈现,导致滚动无法正常工作。
我只需将public abstract class BaseClass
{
...
public abstract void MyMethod<T>(T value);
}
的电话打包到public class InheritedClass: BaseClass
{
...
public override void MyMethod<InheritedClass>(InheritedClass value)
{
...
}
}
,如下所示:
smoothScrollTo
请注意,我直接在scrollView上发布帖子以确保它在呈现后执行。例如,执行.post
在我的情况下不起作用。