- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我正在关注 this教程。
我想在 TabsViewpager 中添加一个 SearchView
作为链接:Picture 1 http://www.uphinh.vn/image/stream/1386201.png
但是我的应用程序,SearchView 不在 TabsViewpager 中作为链接:Picture 2 http://www.uphinh.vn/image/stream/1386202.png
我无法修复它。
这是我的代码:
这是 FragmentTab3.java:
public class FragmentTab3 extends SherlockFragment implements OnQueryTextListener {
TextView mSearchText;
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
setHasOptionsMenu(true);
// Get the view from fragmenttab1.xml
View view = inflater.inflate(R.layout.fragmenttab3, container, false);
mSearchText =(TextView)view.findViewById(R.id.test);
return view;
}
@Override
public void onSaveInstanceState(Bundle outState) {
super.onSaveInstanceState(outState);
setUserVisibleHint(true);
}
@Override
public void onCreateOptionsMenu(Menu menu, MenuInflater inflater) {
// TODO Auto-generated method stub
super.onCreateOptionsMenu(menu, inflater);
inflater.inflate(R.menu.menutab3, menu);
SearchView searchView = (SearchView) menu.findItem(R.id.action_search).getActionView();
searchView.setQueryHint("Search");
//searchView.setBackgroundColor(Color.WHITE);
searchView.setOnQueryTextListener(this);
}
@Override
public boolean onQueryTextChange(String newText) {
// TODO Auto-generated method stub
mSearchText.setText("Query so far:"+newText);
mSearchText.setTextColor(Color.GREEN);
return false;
}
@Override
public boolean onQueryTextSubmit(String query) {
// TODO Auto-generated method stub
mSearchText.setText("Searching for: " + query + "...");
mSearchText.setTextColor(Color.RED);
return false;
}
}
这是fragmenttab3.xml
<?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" >
<TextView
android:id="@+id/test"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:text="@string/Fragment3" />
</RelativeLayout>
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android" >
<item android:id="@+id/action_search"
android:icon="@android:drawable/ic_menu_search"
android:title="Action Bar Search"
android:showAsAction="ifRoom|withText|collapseActionView"
android:actionViewClass="android.widget.SearchView" />
<item
android:id="@+id/gamepad"
android:title="@string/gamepad"
android:icon="@drawable/gamepad"
android:showAsAction="ifRoom|withText"
/>
<item
android:id="@+id/camera"
android:title="@string/camera"
android:icon="@drawable/camera"
android:showAsAction="ifRoom|withText"
/>
</menu>
我使用 libs actionbarsherlock。
我无法修复它。
最佳答案
这是带有 viewpager 的 searchview 的简单示例
接口(interface)IDataCallback
import java.util.ArrayList;
public interface IDataCallback {
void onFragmentCreated( ArrayList<String> listData);
}
接口(interface)IFragmentListener
public interface IFragmentListener {
void addiSearch(ISearch iSearch);
void removeISearch(ISearch iSearch);
}
接口(interface) ISearch
public interface ISearch {
void onTextQuery(String text);
}
你的 Activity MainActivity
import android.app.SearchManager;
import android.content.Context;
import android.os.Bundle;
import android.support.design.widget.TabLayout;
import android.support.v4.view.ViewPager;
import android.support.v7.app.AppCompatActivity;
import android.support.v7.widget.SearchView;
import android.support.v7.widget.Toolbar;
import android.util.Log;
import android.view.Menu;
import android.view.MenuInflater;
import android.view.MenuItem;
import java.util.ArrayList;
public class MainActivity extends AppCompatActivity implements TabLayout.OnTabSelectedListener, SearchView.OnQueryTextListener, IFragmentListener {
//This is our tablayout
private TabLayout tabLayout;
//This is our viewPager
private ViewPager viewPager;
ArrayList<ISearch> iSearch = new ArrayList<>();
private MenuItem searchMenuItem;
private String newText;
private PageAdapter adapter;
ArrayList<String> listData = null;
IDataCallback iDataCallback = null;
public void setiDataCallback(IDataCallback iDataCallback) {
this.iDataCallback = iDataCallback;
iDataCallback.onFragmentCreated(listData);
}
@Override
public void addiSearch(ISearch iSearch) {
this.iSearch.add(iSearch);
}
@Override
public void removeISearch(ISearch iSearch) {
this.iSearch.remove(iSearch);
}
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
//Adding toolbar to the activity
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
listData = new ArrayList<>();
//Initializing the tablayout
tabLayout = (TabLayout) findViewById(R.id.tabLayout);
//Adding the tabs using addTab() method
tabLayout.addTab(tabLayout.newTab().setText("Tab1"));
tabLayout.addTab(tabLayout.newTab().setText("Tab2"));
tabLayout.addTab(tabLayout.newTab().setText("Tab3"));
tabLayout.setTabGravity(TabLayout.GRAVITY_FILL);
//Initializing viewPager
viewPager = (ViewPager) findViewById(R.id.pager);
//Creating our pager adapter
adapter = new PageAdapter(getSupportFragmentManager(), tabLayout.getTabCount(), newText);
//Adding adapter to pager
viewPager.setAdapter(adapter);
//Adding onTabSelectedListener to swipe views
tabLayout.setOnTabSelectedListener(this);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
MenuInflater inflater = getMenuInflater();
inflater.inflate(R.menu.menu, menu);
SearchManager searchManager = (SearchManager) getSystemService(Context.SEARCH_SERVICE);
searchMenuItem = menu.findItem(R.id.action_search);
SearchView searchView = (SearchView) searchMenuItem.getActionView();
searchView.setSearchableInfo(searchManager.getSearchableInfo(getComponentName()));
searchView.setSubmitButtonEnabled(true);
searchView.setOnQueryTextListener(this);
return super.onCreateOptionsMenu(menu);
}
@Override
public void onTabSelected(TabLayout.Tab tab) {
viewPager.setCurrentItem(tab.getPosition());
}
public void getDataFromFragment_one(ArrayList<String> listData) {
this.listData = listData;
Log.e("-->", "" + listData.toString());
}
@Override
public void onTabUnselected(TabLayout.Tab tab) {
}
@Override
public void onTabReselected(TabLayout.Tab tab) {
}
@Override
public boolean onQueryTextChange(String newText) {
this.newText = newText;
adapter.setTextQueryChanged(newText);
for (ISearch iSearchLocal : this.iSearch)
iSearchLocal.onTextQuery(newText);
return true;
}
@Override
public boolean onQueryTextSubmit(String query) {
return false;
}
}
主要 Activity xml activity_main
<LinearLayout
android:id="@+id/main_layout"
android:orientation="vertical"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<!-- our toolbar -->
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?attr/colorPrimary"
android:minHeight="?attr/actionBarSize"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"/>
<!-- our tablayout to display tabs -->
<android.support.design.widget.TabLayout
android:id="@+id/tabLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?attr/colorPrimary"
android:minHeight="?attr/actionBarSize"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"/>
<!-- View pager to swipe views -->
<android.support.v4.view.ViewPager
android:id="@+id/pager"
android:layout_width="match_parent"
android:layout_height="fill_parent"/>
</LinearLayout>
页面适配器 PageAdapter
import android.support.v4.app.Fragment;
import android.support.v4.app.FragmentManager;
import android.support.v4.app.FragmentStatePagerAdapter;
public class PageAdapter extends FragmentStatePagerAdapter {
private String mSearchTerm;
//integer to count number of tabs
int tabCount;
//Constructor to the class
public PageAdapter(FragmentManager fm, int tabCount, String searchTerm) {
super(fm);
//Initializing tab count
this.tabCount= tabCount;
this.mSearchTerm= searchTerm;
}
//Overriding method getItem
@Override
public Fragment getItem(int position) {
//Returning the current tabs
switch (position) {
case 0:
Tab1 tab1 = Tab1.newInstance(mSearchTerm);
return tab1;
case 1:
Tab2 tab2 = Tab2.newInstance(mSearchTerm);
return tab2;
case 2:
Tab3 tab3 = Tab3.newInstance(mSearchTerm);
return tab3;
default:
return null;
}
}
//Overriden method getCount to get the number of tabs
@Override
public int getCount() {
return tabCount;
}
public void setTextQueryChanged(String newText) {
mSearchTerm = newText;
}
}
第一个 fragment Tab1
import android.content.Context;
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ArrayAdapter;
import android.widget.ListView;
import java.util.ArrayList;
public class Tab1 extends Fragment implements ISearch {
private static final String ARG_SEARCHTERM = "search_term";
private String mSearchTerm = null;
ArrayList<String> strings = null;
private IFragmentListener mIFragmentListener = null;
ArrayAdapter<String> arrayAdapter = null;
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
View view;
//Returning the layout file after inflating
//Change R.layout.tab1 in you classes
view = inflater.inflate(R.layout.tab1, container, false);
ListView listView = (ListView) view.findViewById(R.id.listview1);
strings = new ArrayList<>();
for (int i = 0; i < 20; i++) {
strings.add(String.valueOf(i));
}
strings.add("11");
arrayAdapter = new ArrayAdapter<>(getActivity(), android.R.layout.simple_list_item_1, strings);
listView.setAdapter(arrayAdapter);
MainActivity mainActivity = (MainActivity) getActivity();
mainActivity.getDataFromFragment_one(strings);
if (getArguments() != null) {
mSearchTerm = (String) getArguments().get(ARG_SEARCHTERM);
}
return view;
}
@Override
public void onResume() {
super.onResume();
if (null != mSearchTerm) {
onTextQuery(mSearchTerm);
}
}
public Tab1() {
}
public static Tab1 newInstance(String searchTerm) {
Tab1 fragment = new Tab1();
Bundle bundle = new Bundle();
bundle.putString(ARG_SEARCHTERM, searchTerm);
fragment.setArguments(bundle);
return fragment;
}
@Override
public void onTextQuery(String text) {
arrayAdapter.getFilter().filter(text);
arrayAdapter.notifyDataSetChanged();
}
@Override
public void onAttach(Context context) {
super.onAttach(context);
mIFragmentListener = (IFragmentListener) context;
mIFragmentListener.addiSearch(Tab1.this);
}
@Override
public void onDetach() {
super.onDetach();
if (null != mIFragmentListener)
mIFragmentListener.removeISearch(Tab1.this);
}
}
第一个 fragment xml tab1.xml
<?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"
android:orientation="vertical">
<ListView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/listview1">
</ListView>
</RelativeLayout>
第二个 fragment Tab2
import android.content.Context;
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
public class Tab2 extends Fragment implements ISearch {
private static final String ARG_SEARCHTERM = "search_term";
private String mSearchTerm = null;
private IFragmentListener mIFragmentListener = null;
//Overriden method onCreateView
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
//Returning the layout file after inflating
//Change R.layout.tab1 in you classes
View view = inflater.inflate(R.layout.tab2, container, false);
if(getArguments()!=null) {
mSearchTerm = (String) getArguments().get(ARG_SEARCHTERM);
}
return view;
}
@Override
public void onTextQuery(String text) {
}
@Override
public void onResume() {
super.onResume();
if(null!=mSearchTerm) {
onTextQuery(mSearchTerm);
}
}
public static Tab2 newInstance(String searchTerm){
Tab2 fragment = new Tab2();
Bundle bundle = new Bundle();
bundle.putString(ARG_SEARCHTERM, searchTerm);
fragment.setArguments(bundle);
return fragment;
}
@Override
public void onAttach(Context context) {
super.onAttach(context);
mIFragmentListener = (IFragmentListener) context;
mIFragmentListener.addiSearch(Tab2.this);
}
@Override
public void onDetach() {
super.onDetach();
if(null!=mIFragmentListener)
mIFragmentListener.removeISearch(Tab2.this);
}
}
第二个 fragment xml tab2.xml
<?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"
android:orientation="vertical">
<TextView
android:id="@+id/textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:text="Tab 2"
android:textAppearance="?android:attr/textAppearanceLarge"/>
</RelativeLayout>
第三个 fragment Tab3
import android.content.Context;
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ArrayAdapter;
import android.widget.ListView;
import java.util.ArrayList;
//Our class extending fragment
public class Tab3 extends Fragment implements ISearch, IDataCallback {
private static final String ARG_SEARCHTERM = "search_term";
private String mSearchTerm = null;
ArrayList<String> strings = null;
private IFragmentListener mIFragmentListener = null;
ArrayAdapter<String> arrayAdapter = null;
//Overriden method onCreateView
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
View view;
//Returning the layout file after inflating
//Change R.layout.tab1 in you classes
view = inflater.inflate(R.layout.tab3, container, false);
ListView listView = (ListView) view.findViewById(R.id.listview2);
((MainActivity) getActivity()).setiDataCallback(this);
arrayAdapter = new ArrayAdapter<>(getActivity(), android.R.layout.simple_list_item_1, strings);
listView.setAdapter(arrayAdapter);
if (getArguments() != null) {
mSearchTerm = (String) getArguments().get(ARG_SEARCHTERM);
}
return view;
}
@Override
public void onTextQuery(String text) {
arrayAdapter.getFilter().filter(text);
arrayAdapter.notifyDataSetChanged();
}
@Override
public void onResume() {
super.onResume();
if (null != mSearchTerm) {
onTextQuery(mSearchTerm);
}
}
public static Tab3 newInstance(String searchTerm) {
Tab3 fragment = new Tab3();
Bundle bundle = new Bundle();
bundle.putString(ARG_SEARCHTERM, searchTerm);
fragment.setArguments(bundle);
return fragment;
}
@Override
public void onAttach(Context context) {
super.onAttach(context);
mIFragmentListener = (IFragmentListener) context;
mIFragmentListener.addiSearch(Tab3.this);
}
@Override
public void onDetach() {
super.onDetach();
if (null != mIFragmentListener)
mIFragmentListener.removeISearch(Tab3.this);
}
@Override
public void onFragmentCreated(ArrayList<String> listData) {
strings = listData;
}
}
第三个 fragment xml tab3.xml
<?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"
android:orientation="vertical">
<ListView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/listview2">
</ListView>
</RelativeLayout>
Activity 菜单 menu.xml
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:yourapp="http://schemas.android.com/apk/res-auto">
<item
android:id="@+id/action_search"
android:icon="@android:drawable/ic_menu_search"
yourapp:showAsAction="collapseActionView|always"
yourapp:actionViewClass="android.support.v7.widget.SearchView"
android:title="Search"/>
</menu>
关于android - 选项卡中的 SearchView ViewPager,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18922911/
我想做的是让 JTextPane 在 JPanel 中占用尽可能多的空间。对于我使用的 UpdateInfoPanel: public class UpdateInfoPanel extends JP
我在 JPanel 中有一个 JTextArea,我想将其与 JScrollPane 一起使用。我正在使用 GridBagLayout。当我运行它时,框架似乎为 JScrollPane 腾出了空间,但
我想在 xcode 中实现以下功能。 我有一个 View Controller 。在这个 UIViewController 中,我有一个 UITabBar。它们下面是一个 UIView。将 UITab
有谁知道Firebird 2.5有没有类似于SQL中“STUFF”函数的功能? 我有一个包含父用户记录的表,另一个表包含与父相关的子用户记录。我希望能够提取用户拥有的“ROLES”的逗号分隔字符串,而
我想使用 JSON 作为 mirth channel 的输入和输出,例如详细信息保存在数据库中或创建 HL7 消息。 简而言之,输入为 JSON 解析它并输出为任何格式。 最佳答案 var objec
通常我会使用 R 并执行 merge.by,但这个文件似乎太大了,部门中的任何一台计算机都无法处理它! (任何从事遗传学工作的人的附加信息)本质上,插补似乎删除了 snp ID 的 rs 数字,我只剩
我有一个以前可能被问过的问题,但我很难找到正确的描述。我希望有人能帮助我。 在下面的代码中,我设置了varprice,我想添加javascript变量accu_id以通过rails在我的数据库中查找记
我有一个简单的 SVG 文件,在 Firefox 中可以正常查看 - 它的一些包装文本使用 foreignObject 包含一些 HTML - 文本包装在 div 中:
所以我正在为学校编写一个 Ruby 程序,如果某个值是 1 或 3,则将 bool 值更改为 true,如果是 0 或 2,则更改为 false。由于我有 Java 背景,所以我认为这段代码应该有效:
我做了什么: 我在这些账户之间创建了 VPC 对等连接 互联网网关也连接到每个 VPC 还配置了路由表(以允许来自双方的流量) 情况1: 当这两个 VPC 在同一个账户中时,我成功测试了从另一个 La
我有一个名为 contacts 的表: user_id contact_id 10294 10295 10294 10293 10293 10294 102
我正在使用 Magento 中的新模板。为避免重复代码,我想为每个产品预览使用相同的子模板。 特别是我做了这样一个展示: $products = Mage::getModel('catalog/pro
“for”是否总是检查协议(protocol)中定义的每个函数中第一个参数的类型? 编辑(改写): 当协议(protocol)方法只有一个参数时,根据该单个参数的类型(直接或任意)找到实现。当协议(p
我想从我的 PHP 代码中调用 JavaScript 函数。我通过使用以下方法实现了这一点: echo ' drawChart($id); '; 这工作正常,但我想从我的 PHP 代码中获取数据,我使
这个问题已经有答案了: Event binding on dynamically created elements? (23 个回答) 已关闭 5 年前。 我有一个动态表单,我想在其中附加一些其他 h
我正在尝试找到一种解决方案,以在 componentDidMount 中的映射项上使用 setState。 我正在使用 GraphQL连同 Gatsby返回许多 data 项目,但要求在特定的 pat
我在 ScrollView 中有一个 View 。只要用户按住该 View ,我想每 80 毫秒调用一次方法。这是我已经实现的: final Runnable vibrate = new Runnab
我用 jni 开发了一个 android 应用程序。我在 GetStringUTFChars 的 dvmDecodeIndirectRef 中得到了一个 dvmabort。我只中止了一次。 为什么会这
当我到达我的 Activity 时,我调用 FragmentPagerAdapter 来处理我的不同选项卡。在我的一个选项卡中,我想显示一个 RecyclerView,但他从未出现过,有了断点,我看到
当我按下 Activity 中的按钮时,会弹出一个 DialogFragment。在对话框 fragment 中,有一个看起来像普通 ListView 的 RecyclerView。 我想要的行为是当
我是一名优秀的程序员,十分优秀!