- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我一直在尝试在操作栏中开发一个 ListNavigation 下拉菜单。操作栏中有 2 个下拉菜单。
现在我想为每个微调器选择显示一个唯一的 TextView。就像如果用户从左侧下拉菜单中选择 Fragment1
并从右侧下拉菜单中选择“一个”,则项目符号列表将出现在 TextView 中。如果用户从左侧下拉列表中选择 Fragment 1
并从右侧下拉列表中选择“two”,则另一个项目符号列表将显示在 TextView 中。
基本上,我使用“左下拉”作为主菜单,“右下拉”作为子菜单来显示主要是项目符号列表的文本。
现在我可以获得 GUI,但我对如何实现它感到有点困惑。
这是主要 Activity 的代码:
package com.temp.basicactionbar;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import android.app.ActionBar;
import android.app.ActionBar.OnNavigationListener;
import android.app.Activity;
import android.app.Fragment;
import android.app.FragmentTransaction;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.widget.ArrayAdapter;
import android.widget.EditText;
import android.widget.SimpleAdapter;
import android.widget.Spinner;
public class MainActivity extends Activity
{
private MenuItem mSpinnerItem = null;
private MenuItem mSearchItem = null;
private EditText mSearch = null;
@Override
public void onCreate( Bundle savedInstanceState ) {
super.onCreate( savedInstanceState );
ActionBar ab = getActionBar();
ab.setDisplayShowTitleEnabled( false );
setListNavigation( ab );
}
@Override
protected void onSaveInstanceState( Bundle outState ) {
outState.putInt( "mode", getActionBar().getNavigationMode() );
super.onSaveInstanceState( outState );
}
@Override
public boolean onCreateOptionsMenu( Menu menu ) {
getMenuInflater().inflate( R.menu.main, menu );
mSpinnerItem = menu.findItem( R.id.menu_spinner );
setupSpinner( mSpinnerItem );
mSearchItem = menu.findItem( R.id.menu_search );
mSearchItem.setVisible(getActionBar().getNavigationMode() == ActionBar.NAVIGATION_MODE_TABS );
mSearch = (EditText) mSearchItem.getActionView().findViewById(R.id.search );
return true;
}
private void setListNavigation( ActionBar actionBar )
{
actionBar.setNavigationMode( ActionBar.NAVIGATION_MODE_LIST );
final List<Map<String, Object>> data = new ArrayList<Map<String, Object>>();
Map<String, Object> map = new HashMap<String, Object>();
map.put( "title", getString( R.string.frag1 ) );
map.put( "fragment",
Fragment.instantiate( this, Fragment1.class.getName() ) );
data.add( map );
map = new HashMap<String, Object>();
map.put( "title", getString( R.string.frag2 ) );
map.put( "fragment",
Fragment.instantiate( this, Fragment2.class.getName() ) );
data.add( map );
map = new HashMap<String, Object>();
map.put( "title", getString( R.string.frag3 ) );
map.put( "fragment",
Fragment.instantiate( this, Fragment3.class.getName() ) );
data.add( map );
map = new HashMap<String, Object>();
map.put( "title", getString( R.string.frag4 ) );
map.put( "fragment", Fragment.instantiate( this, Fragment4.class.getName() ) );
data.add( map );
SimpleAdapter adapter = new SimpleAdapter( this, data,
android.R.layout.simple_spinner_dropdown_item,
new String[] { "title" }, new int[] { android.R.id.text1 } );
actionBar.setListNavigationCallbacks( adapter,
new OnNavigationListener()
{
@Override
public boolean onNavigationItemSelected(int itemPosition, long itemId) {
Map<String, Object> map = data.get( itemPosition );
Object o = map.get( "fragment" );
if (o instanceof Fragment)
{
FragmentTransaction tx = getFragmentManager()
.beginTransaction();
tx.replace( android.R.id.content, (Fragment) o );
tx.commit();
}
return true;
}
} );
if (mSpinnerItem != null)
{
setupSpinner( mSpinnerItem );
}
}
private void setupSpinner( MenuItem item )
{
item.setVisible( getActionBar().getNavigationMode() == ActionBar.NAVIGATION_MODE_LIST );
View view = item.getActionView();
if (view instanceof Spinner)
{
Spinner spinner = (Spinner) view;
spinner.setAdapter( ArrayAdapter.createFromResource( this,
R.array.spinner_data,
android.R.layout.simple_spinner_dropdown_item ) );
}
}
public void delete( View v )
{
if (mSearch != null)
{
mSearch.setText( "" );
}
}
}
这是 fragment 的代码
package com.stylingandroid.basicactionbar;
import android.app.Fragment;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
public class Fragment2 extends Fragment
{
@Override
public View onCreateView( LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState )
{
return inflater.inflate( R.layout.frag2, container, false );
}
}
这是每个 fragment 的 XML 布局。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:text="@string/frag3"/>
</RelativeLayout>
如果您想要完整的项目 zip,请告诉我,我会为您提供。谢谢
最佳答案
我所做的(我相信这是一个很好的方法)是使用 spinner.onItemSelectedListener()
mySpinner.setOnItemSelectedListener(new AdapterView.OnItemSelectedListener() {
public void onItemSelected(AdapterView<?> adapter, View v,
int i, long lng) {
if (i == 0) { // If the first item is selected (usually the default, unless you define another one in code)
// Do something here
} else if (i == 1) { // Second item selected
// Do something else...
} else if (i == 2) {
// And so on...
}
}
public void onNothingSelected(AdapterView<?> arg0) {
// Do nothing
}
});
然后创建一个函数以使用新的值数组更新第二个微调器。
或者(简单但可能不是最好的方法),您可以在 xml 布局中创建所有微调器,并使用第一个来决定显示第二个微调器中的哪个(使用 setVisibility(View. GONE/View.VISIBLE)
)...
为了澄清 - 我在布局中创建所有微调器的意思是,您为每个备选列表创建一个微调器,但将 android:visibility
属性设置为 gone
用于除您希望用户最初看到的代码之外的所有代码。
然后你必须在你的布局中有一些像这样的 xml:
<spinner
android:id="mySpinner1"
...
// properties and stuff here
...
android:visibility="visible" /> // You don't really need this line, since spinners are visible by default
<spinner
android:id="mySpinner2"
...
// properties and stuff here
...
android:visibility="gone" /> // This line will make it look like the spinner was never there
<spinner
android:id="mySpinner3"
...
// properties and stuff here
...
android:visibility="gone" />
对于您想要的每个微调器,当用户在第一个微调器中选择不同的东西时,您只需隐藏前一个微调器并根据他/她的选择显示新的微调器,使用 spinner1.setVisibility(View.VISIBLE );
然后可以将前面示例中的代码修改为类似这样的内容(如果您有 3 个微调器,如果您有更多或更少,您也必须为它们添加行):
mySpinner.setOnItemSelectedListener(new AdapterView.OnItemSelectedListener() {
public void onItemSelected(AdapterView<?> adapter, View v,
int i, long lng) {
if (i == 0) { // If the first item is selected (usually the default, unless you define another one in code)
// Display the spinner you selected
spinner1.setVisibility(View.VISIBLE);
// Hide the rest
spinner2.setVisibility(View.GONE);
spinner3.setVisibility(View.GONE);
} else if (i == 1) { // Second item selected
// Display the spinner you selected
spinner2.setVisibility(View.VISIBLE);
// Hide the rest
spinner1.setVisibility(View.GONE);
spinner3.setVisibility(View.GONE);
} else if (i == 2) {
// Display the spinner you selected
spinner3.setVisibility(View.VISIBLE);
// Hide the rest
spinner1.setVisibility(View.GONE);
spinner2.setVisibility(View.GONE);
}
}
public void onNothingSelected(AdapterView<?> arg0) {
// Do nothing
}
});
请注意,这可能不是最好的方法 - 但是,嘿,它有效! ;)
当然,您必须像所有其他要与之交互的 View 一样检索微调器(通过使用 findItemById
),但您可能已经知道这一点 - 祝您的项目好运。
关于Android Navigation Drop down with Spinner,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13574301/
我正在使用 gfx-hal,这需要我创建需要使用特定于其类型的函数显式销毁的资源。我想将这些类型的实例存储在结构中,并且我还想将清理它们与拥有结构的生命周期相关联,而不是手动管理它们的生命周期并可能在
关闭。这个问题需要details or clarity .它目前不接受答案。 想改进这个问题吗? 通过 editing this post 添加细节并澄清问题. 关闭 7 年前。 Improve
我知道这一定是非常明显的事情,但我不明白。我有两个 div,一个可拖动,另一个带有 on:drop,当我将可拖动的 div 放到它上面时,它似乎没有被调用。我错过了什么? 回复:https://sve
在下面的应用程序中,从未调用 drop 方法。放置目标 ( div2 ) 由 dragEnter 和 dragOver 事件中的取消事件指示,但不触发放置。 HTML 和 .dart 如下:
我已经使用 ng2 文件上传实现了文件删除。我面临的问题是,当文件被拖放到拖放区域之外时,浏览器会打开它。有什么办法可以防止这种事件发生吗? Angular 2/4 最佳答案 是的,终于成功了。我希望
我是使用rust 的新手。我的简单代码 struct Foo{ data : & 'a String, } fn test_foo(){ let s1:String = String::
我希望 image.src 显示 id,而不是每个 的值。 drop.id 存在吗?这可以做到吗?或者id被锁定在中?当用户点击提交时,我需要传递表单中的值。 function swapImage
我正在使用一个数据框,我必须将两列(定量和销售)添加然后删除它们,然后将列名称的第一个字母大写。问题是当我使用 drop 时,它会将其保存到另一个数据帧。从文档来看,问题来自 inplace=fals
我想让 Drop left 而不是在 bootstrap 下拉按钮中下拉。我正在努力实现这一点,但我无法做到这一点,有人可以指导我这样做吗? 这是我的代码 Small button
我在使用 Blazor 时遇到了一个奇怪的问题... 我有一个使用拖放功能的应用程序,它使用 .Net Core 3.1 运行良好。然而,无论我做什么,drop 事件现在都不会被解雇,我不知道为什么。
我希望能够移动(在灰色背景上,通过拖放)Bootstrap 2 提供的模态表单。谁能告诉我实现此目的的最佳实践是什么? 最佳答案 默认情况下, Bootstrap 不附带任何拖放功能,但您可以添加一些
我试图在拖放过程中更改节点上的光标,但图像没有改变。我打电话 setCursor()在 DragDetectedEventHandler我的节点。我也试过调用 getParent().setCurso
我刚刚注意到您可以在 PostgreSQL 中编写两者。有什么区别还是只是“简化”的语法。据我所知,这两者的作用完全相同。 ALTER TABLE table DROP my_column; 对比 A
我将屏幕分为两个 DIV。在左侧的 DIV 中,我有一些 50x50 像素的 DIV,在右侧的 DIV 中,我有一个由 80x80 LI 组成的空网格 。左侧的 DIV 是可拖动的,一旦放到 LI 上
我正在使用这个库 Drop ,但是记录很差,我不明白如何使用它。首先我安装了: npm install tether-drop 我已经下载了 Drop.js,然后用 Tether 导入它(导入所有内容
我想使用 jQuery 处理拖放 HTML 5 功能。直到没有触发 drop 事件为止都可以。看看我的代码: A B C $('#columns .column').on({
我需要使用 mysqldump 和 replace 而不是 insert 并且在恢复时不删除数据库和表。但我需要删除并重新创建触发器和存储过程 为此,我将 mysqldump 与 --replace
在 CD 管道中,我使用下载构建工件任务将工件下载到目标目录。我的发布工件目录结构如下 drop --> 来源 --> abc.zip 现在的问题是,每当我下载工件时,它都会下载整个放置文件夹并将相同
您好,我正在开发拖放应用程序。我有一个可以沿着文档拖动的 DIV,并且文档中还有其他一些 div,我可以将一个 div 拖到其他 div,这会使页面变得困惑它在空的地方并禁用另一个 div 中的放置,
我有以下代码: $(".dropzone").on("dragover", function(ev) { ev.preventDefault();
我是一名优秀的程序员,十分优秀!