gpt4 book ai didi

android - 在 Android 操作栏中下拉搜索栏?

转载 作者:太空狗 更新时间:2023-10-29 15:54:08 26 4
gpt4 key购买 nike

我正在尝试在操作栏中放置一个下拉/下拉搜索栏。我认为 OnCreateOptionsMenu() 中的类似内容会起作用:

    SubMenu subMenu = menu.addSubMenu("DropTest");

MenuItem seekBarDrop = subMenu2.add("SeekBar");
SeekBar seekBar = new SeekBar(this);
seekBarDrop.setActionView(seekBar);
seekBarDrop.setShowAsAction(MenuItem.SHOW_AS_ACTION_ALWAYS);

MenuItem subMenuItem = subMenu2.getItem();
subMenuItem.setShowAsAction(MenuItem.SHOW_AS_ACTION_ALWAYS);

但它惨遭失败。我也试过将它改造成微调器适配器(使用 IcsSpinner 来实现 actionbarsherlock):

    ArrayAdapter<CharSequence> seekAdapter = 
new ArrayAdapter<CharSequence>(context,
R.layout.spinner_subtitled_octave,
android.R.id.text1, new String[]{""});

seekAdapter.setDropDownViewResource(R.layout.seekbar);

MenuItem itemX = menu.add("SeekBar").setActionView(R.layout.spinner_ics);
itemX.setShowAsAction(MenuItem.SHOW_AS_ACTION_ALWAYS);

IcsSpinner spinBar = (IcsSpinner) itemX.getActionView();
spinBar.setAdapter(seekAdapter);

/*
* This next part doesn't crash, but it also doesn't work
*/

LinearLayout sbLayout = (LinearLayout)
seekAdapter.getDropDownView(0, null, null);

SeekBar seekBar = (SeekBar) sbLayout.findViewById(R.id.v_seekbar);
seekBar.setOnSeekBarChangeListener(new OnSeekBarChangeListener(){
@Override
public void onProgressChanged(SeekBar seekBar, int progress,
boolean fromUser) {
Log.d(TAG, "" + progress); // nope
}
@Override
public void onStartTrackingTouch(SeekBar seekBar) { }
@Override
public void onStopTrackingTouch(SeekBar seekBar) { }
});

使用seekbar.xml:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<TextView
android:id="@android:id/text1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text=""
android:textAppearance="?android:attr/textAppearanceSmall"
android:textColor="@color/highlight"
/>
<SeekBar
android:id="@+id/v_seekbar"
android:minWidth="100dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="@dimen/spacer" />

</LinearLayout>

和 spinner_seek.xml:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal" >

<TextView
android:id="@+id/TextView1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="SEEKBAR"
android:padding="5dp"
android:textAppearance="?android:attr/textAppearanceSmall"
android:textColor="@color/main" />

<TextView
android:id="@android:id/text1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text=""
android:textAppearance="?android:attr/textAppearanceSmall"
android:textColor="@color/highlight" />

</LinearLayout>

它至少有一个下拉搜索栏,但我不知道如何获取对它的引用。

有人知道如何走完最后一英里吗?

编辑:写完后我注意到 PopupMenu 存在,但它只是 API 11+(我的项目是 10+)或 HoloEverywhere。希望在没有 ABS 以外的任何库的情况下做到这一点。

最佳答案

这是您要找的吗: enter image description here

我使用 BaseAdapter 做了这个:

主要 Activity :

public class MainActivity extends Activity implements OnNavigationListener {

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
ActionBar bar = getActionBar();
ArrayList<String> list = new ArrayList<String>();
list.add("bar 0 ");
list.add("bar 2 ");
list.add("bar 3 ");
list.add("bar 4 ");
Adapter adapter = new Adapter();

bar.setNavigationMode(ActionBar.NAVIGATION_MODE_LIST);
bar.setListNavigationCallbacks(adapter.getAdapter(this, list, "Controls"), this);
adapter.setSeekBarListener( new SeekBarListener(){

@Override
public void onProgressChanged(SeekBar seekBar, int progress, boolean fromUser, int positionInList) {
Log.i("", "onProgressChanged " + progress + " position in list" + positionInList);

}

@Override
public void onStartTrackingTouch(SeekBar seekBar, int positionInList) {
// TODO Auto-generated method stub

}

@Override
public void onStopTrackingTouch(SeekBar seekBar, int positionInList) {
// TODO Auto-generated method stub

}

});
}


@Override
public boolean onNavigationItemSelected(int itemPosition, long itemId) {
// TODO Auto-generated method stub
return false;
}

适配器类:

public class Adapter {
private SeekBarListener mListener;

public interface SeekBarListener{
public void onProgressChanged(SeekBar seekBar, int progress, boolean fromUser, int positionInList);
public void onStartTrackingTouch(SeekBar seekBar, int positionInList);
public void onStopTrackingTouch(SeekBar seekBar, int positionInList);
}

public listAdapter getAdapter(Context context, ArrayList<String> list, String title){
return new listAdapter(context, list, title);
}

public void setSeekBarListener(SeekBarListener listener){
mListener = listener;
}

public class listAdapter extends BaseAdapter {
private LayoutInflater mInflater;
private onSeekbarChange mSeekListener;
private ArrayList<String> itemsList;
private String title;

public listAdapter(Context context, ArrayList<String> list, String title){
mInflater = LayoutInflater.from(context);
if(mSeekListener == null){
mSeekListener = new onSeekbarChange();
}
this.itemsList = list;
this.title = title;
}

@Override
public int getCount() {
return itemsList.size();
}

@Override
public Object getItem(int position) {
// TODO Auto-generated method stub
return null;
}

@Override
public long getItemId(int position) {
// TODO Auto-generated method stub
return 0;
}

@Override
public View getView(int position, View convertView, ViewGroup parent) {
ViewHolder2 holder;

if(convertView == null){
holder = new ViewHolder2();
convertView = mInflater.inflate(R.layout.baseadapter_layout, null);
holder.text_title = (TextView)convertView.findViewById(R.id.textView);
convertView.setTag(R.layout.baseadapter_layout, holder);
} else {
holder = (ViewHolder2)convertView.getTag(R.layout.baseadapter_layout);
}
holder.text_title.setText(title);
return convertView;
}


@Override
public View getDropDownView(int position, View convertView, ViewGroup parent) {
ViewHolder holder;

if(convertView == null){
holder = new ViewHolder();
convertView = mInflater.inflate(R.layout.baseadapter_dropdown_layout, null);
holder.text = (TextView)convertView.findViewById(R.id.textView1);
holder.seekbar = (SeekBar)convertView.findViewById(R.id.seekBar1);
convertView.setTag(R.layout.baseadapter_dropdown_layout, holder);
} else {
holder = (ViewHolder)convertView.getTag(R.layout.baseadapter_dropdown_layout);
}
holder.text.setText(itemsList.get(position));
holder.seekbar.setOnSeekBarChangeListener(mSeekListener);
holder.seekbar.setTag(position);
return convertView;

}

}

static class ViewHolder {
TextView text;
SeekBar seekbar;
}

static class ViewHolder2 {
TextView text_title;
}


public class onSeekbarChange implements OnSeekBarChangeListener{

@Override
public void onProgressChanged(SeekBar seekBar, int progress, boolean fromUser) {
int position = (Integer) seekBar.getTag();
if(mListener != null){
mListener.onProgressChanged(seekBar, progress, fromUser, position);
}
}

@Override
public void onStartTrackingTouch(SeekBar seekBar) {
int position = (Integer) seekBar.getTag();
if(mListener != null){
mListener.onStartTrackingTouch(seekBar, position);
}
}

@Override
public void onStopTrackingTouch(SeekBar seekBar) {
int position = (Integer) seekBar.getTag();
if(mListener != null){
mListener.onStopTrackingTouch(seekBar, position);
}
}

}

baseadapter_layout.xml:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >

<TextView
android:id="@+id/textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_marginLeft="25dp"
android:layout_marginTop="18dp"
android:textColor="#FFFFFF"
android:text="Controls" />

baseadapter_dropdown_layout.xml:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >

<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_marginLeft="15dp"
android:layout_marginTop="15dp"
android:textColor="#FFFFFF"
android:text="TextView" />

<SeekBar
android:id="@+id/seekBar1"
android:layout_width="250dp"
android:layout_height="wrap_content"
android:layout_marginTop="11dp"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:layout_toRightOf="@+id/textView1" />

关于android - 在 Android 操作栏中下拉搜索栏?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17407754/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com