- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
有谁知道使用自定义 XML 文件的任何示例滑动选项卡项目?通过自定义 XML,我的意思是页面包含用户输入的数据,而不是推送数据。我想创建一个滑动选项卡项目,我可以在其中使用我自己的 XML 文件来呈现我自己的文本页面而不是推送数据。我在 Internet 上到处查看,但找不到任何相关内容。
最佳答案
你可以为每个选项卡创建一个单独的 fragment 文件,使用 Tabhost 作为容器,我最近在这篇文章之后做了它,应该还有很多其他的:
http://android.codeandmagic.org/android-tabs-with-fragments/
我在下面附加了一些我认为您正在尝试使用的方法的代码,以及我最近制作的一些代码:
XML:
寻呼机容器:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_margin="0dp"
android:padding="0dp"
android:layout_height="wrap_content"
android:orientation="vertical" >
<TabHost
android:id="@android:id/tabhost"
android:layout_margin="0dp"
android:padding="0dp"
android:layout_width=
android:layout_height="wrap_content" >
<LinearLayout
android:layout_width="fill_parent"
android:padding="0dp"
android:layout_height="fill_parent"
android:orientation="vertical" >
<TabWidget
android:layout_margin="0dp"
android:padding="0dp"
android:background="@color/teal_cover"
android:id="@android:id/tabs"
android:textColor="#FFFFFF"
android:addStatesFromChildren="true"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="0"
android:orientation="horizontal" />
<FrameLayout
android:layout_margin="0dp"
android:padding="0dp"
android:id="@android:id/tabcontent"
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_weight="0" />
<android.support.v4.view.ViewPager
android:layout_margin="0dp"
android:padding="0dp"
android:id="@+id/pagerr"
android:layout_width="fill_parent"
android:layout_height="0dp"
android:layout_weight="1">
<Spinner
android:id="@+id/spinner1"
android:layout_margin="0dp"
android:padding="0dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:drawSelectorOnTop="true"
/>
</android.support.v4.view.ViewPager>
</LinearLayout>
</TabHost>
选项卡 1:
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="0dp"
android:layout_margin="0dp"
android:orientation="vertical" >
//.... Rest of XML..............///////////////
</ScrollView>
选项卡 2:
<?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:layout_width="match_parent"
android:id="@+id/container_list_item"
android:layout_height="wrap_content"
android:orientation="vertical" >
<android.support.v7.widget.RecyclerView
android:id="@+id/recyclerView"
android:layout_width="wrap_content"
android:layout_height="match_parent"
tools:listitem="@layout/warning_li"
/>
</LinearLayout>
Java:
容器。
package com.ciudad2020.medioambiente2020;
import android.content.SharedPreferences;
import android.os.Bundle;
import android.content.Context;
import android.content.Intent;
import android.preference.PreferenceManager;
import android.support.v7.app.ActionBarActivity;
import android.util.Log;
import android.view.Menu;
import android.view.MenuInflater;
import android.view.MenuItem;
import android.view.Window;
import android.widget.TabHost;
import android.widget.TabHost.TabContentFactory;
import java.util.HashMap;
import android.support.v4.app.Fragment;
import android.support.v4.app.FragmentActivity;
import android.support.v4.app.FragmentManager;
import android.support.v4.app.FragmentPagerAdapter;
import android.support.v4.view.ViewPager;
import android.view.View;
import android.widget.TextView;
import android.widget.Toast;
public class Search extends ActionBarActivity implements
TabHost.OnTabChangeListener, ViewPager.OnPageChangeListener {
private FragmentPagerAdapter mAdapter;
private TabHost mTabHost;
private ViewPager mPager;
private HashMap<String, TabInfo> mapTabInfo = new HashMap<String, Search.TabInfo>();
public User us;
private int page;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// View v=findViewById(R.layout.pager);
Log.e("Tipo de usuario", AppManager.getInstance().getUser().getUserType());
Log.e("ESNULL",Boolean.toString(AppManager.getInstance().getSharedPreferences(AppManager.getInstance().getUser().getId(), Context.MODE_PRIVATE)==null));
setContentView(R.layout.pager);
us = AppManager.getInstance().getUser();
this.initialiseTabHost(savedInstanceState);
if (savedInstanceState != null) {
mTabHost.setCurrentTabByTag(savedInstanceState.getString("tab"));
}
// Intialise ViewPager
this.intialiseViewPager();
Intent intent = getIntent();
page = intent.getIntExtra("page", 0);
this.mTabHost.setCurrentTab(page);
this.mPager.setCurrentItem(page);
for (int i = 0; i < mTabHost.getTabWidget().getChildCount(); i++) {
View v = mTabHost.getTabWidget().getChildAt(i);
TextView tv = (TextView) mTabHost.getTabWidget().getChildAt(i).findViewById(android.R.id.title);
tv.setTextColor(getResources().getColor(R.color.white));
}
// args.putString("id", id);;
// us.loadFromDb();
}
@Override
public void onBackPressed() {
Log.d("CDA", "onBackPressed Called");
Intent setIntent = new Intent(Intent.ACTION_MAIN);
setIntent.addCategory(Intent.CATEGORY_HOME);
setIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(setIntent);
}
protected void onSaveInstanceState(Bundle outState) {
outState.putString("tab", mTabHost.getCurrentTabTag()); // save the tab
// selected
super.onSaveInstanceState(outState);
}
/**
* Initialise ViewPager
*/
private void intialiseViewPager() {
if (us.getUserType().equals("REGISTERED")) {
this.mAdapter = new PagerAdapter(super.getSupportFragmentManager());
//
}
else{
this.mAdapter = new ViewerPagerAdapter(super.getSupportFragmentManager());
}
this.mPager = (ViewPager) super.findViewById(R.id.pagerr);
this.mPager.setPageMargin(20);
this.mPager.setPadding(0, 0, 0, 0);
this.mPager.setAdapter(this.mAdapter);
this.mPager.setOnPageChangeListener(this);
}
private void initialiseTabHost(Bundle args) {
mTabHost = (TabHost) findViewById(android.R.id.tabhost);
mTabHost.setup();
TabInfo tabInfo;
Search.AddTab(this, this.mTabHost, this.mTabHost.newTabSpec("Tab1")
.setIndicator("Información"), (tabInfo = new TabInfo(
"Tab1", InfoFragment.class, args)));
this.mapTabInfo.put(tabInfo.tag, tabInfo);
Search.AddTab(this, this.mTabHost, this.mTabHost.newTabSpec("Tab3")
.setIndicator("Alertas"), (tabInfo = new TabInfo("Tab3",
WarningsFragment.class, args)));
this.mapTabInfo.put(tabInfo.tag, tabInfo);
// Default to first tab
// this.onTabChanged("Tab1");
//
mTabHost.setOnTabChangedListener(this);
}
/**
* Add Tab content to the Tabhost
*
* @param activity
* @param tabHost
* @param tabSpec
*/
private static void AddTab(Search activity, TabHost tabHost,
TabHost.TabSpec tabSpec, TabInfo tabInfo) {
// Attach a Tab view factory to the spec
tabSpec.setContent(activity.new TabFactory(activity));
tabHost.addTab(tabSpec);
}
public void muestraTostada(String cartel) {
Toast.makeText(this, cartel, Toast.LENGTH_LONG).show();
}
public static class PagerAdapter extends FragmentPagerAdapter {
public PagerAdapter(FragmentManager fm) {
super(fm);
}
@Override
public int getCount() {
return 4;
}
@Override
public float getPageWidth(int position) {
return (1f);
}
@Override
public Fragment getItem(int position) {
InfoFragment iF = new InfoFragment();
WarningsFragment wF = new WarningsFragment();
Bundle args = new Bundle();
args.putInt("number", position);
switch (position) {
case 0:
return iF;
case 1:
return wF;
default:
return null;
}
}
}
public static class ViewerPagerAdapter extends FragmentPagerAdapter {
public ViewerPagerAdapter(FragmentManager fm) {
super(fm);
}
@Override
public int getCount() {
return 2;
}
@Override
public float getPageWidth(int position) {
return (1f);
}
@Override
public Fragment getItem(int position) {
InfoFragment iF = new InfoFragment();
WarningsFragment wF = new WarningsFragment();
Bundle args = new Bundle();
args.putInt("number", position);
switch (position) {
case 0:
return iF;
case 1:
return wF;
case 2:
return wF;
default:
return null;
}
}
}
@Override
public void onPageScrollStateChanged(int arg0) {
}
@Override
public void onPageScrolled(int arg0, float arg1, int arg2) {
int pos = this.mPager.getCurrentItem();
this.mTabHost.setCurrentTab(pos);
}
@Override
public void onPageSelected(int arg0) {
}
@Override
public void onTabChanged(String arg0) {
int pos = this.mTabHost.getCurrentTab();
this.mPager.setCurrentItem(pos);
}
/**
*
* @author cbg Maintains extrinsic info of a tab's construct
*/
private class TabInfo {
private String tag;
private Class<?> clss;
private Bundle args;
private Fragment fragment;
TabInfo(String tag, Class<?> clazz, Bundle args) {
this.tag = tag;
this.clss = clazz;
this.args = args;
}
}
class TabFactory implements TabContentFactory {
private final Context mContext;
/**
* @param context
*/
public TabFactory(Context context) {
mContext = context;
}
/**
* (non-Javadoc)
*
* @see android.widget.TabHost.TabContentFactory#createTabContent(java.lang.String)
*/
public View createTabContent(String tag) {
View v = new View(mContext);
v.setMinimumWidth(0);
v.setMinimumHeight(0);
return v;
}
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu items for use in the action bar
MenuInflater inflater = getMenuInflater();
inflater.inflate(R.menu.main, menu);
return super.onCreateOptionsMenu(menu);
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle presses on the action bar items
int itemId = item.getItemId();
switch (itemId) {
case R.id.action_edit:
showEditDialog();
// Toast.makeText(this, "home pressed", Toast.LENGTH_LONG).show();
break;
case R.id.action_warnings:
showEditWarningsDialog();
}
return true;
}
public void showEditDialog() {
android.app.FragmentManager fm = getFragmentManager();
EditDialog editNameDialog = new EditDialog();
editNameDialog.show(fm, "fragment_edit_name");
}
public void showEditWarningsDialog(){
android.app.FragmentManager fm = getFragmentManager();
EditWarningsDialog editWarningsDialog = new EditWarningsDialog();
editWarningsDialog.show(fm, "fragment_edit_warning");
}
}
Rest fragment 类不相关,只看容器部分。
结果就像下面的附件,我想你所说的就是你正在寻找的东西。
希望对您有所帮助。干杯。
关于java - 使用自定义 XML 文件的 Android 滑动选项卡,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27660707/
这是在我的 MainActivity 中用作 BroadcastReceiver 的代码 mRegistrationBroadcastReceiver = new BroadcastRecei
很难说出这里问的是什么。这个问题是含糊的、模糊的、不完整的、过于宽泛的或修辞性的,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开它,visit the help center 。 已关
我想在大部分时间隐藏 UISearchBar,只在用户需要时调用它来显示。 我在 Interface Builder 中放置了一个 UISearchBar 并将其隐藏在 View 后面,当用户单击按钮
我有一个包含 CCMenuItemImage 的菜单(“myMenu”)。我希望此菜单能够检测手指滑动并相应地滑动。 我的问题是 CCMenuItemImage 似乎吸收了触摸事件。当用户触摸 CCM
我正在寻找一个简单的 jQuery 或 Javascript 解决方案,以使导航侧边栏在用户向下滚动页面时顺利跟随用户。像这里一样:http://ucon-acrobatics.com/shop/ 任
我有一个 ListView 控件来显示项目,我想提供一个滑动/滑动手势来选择一个项目。我用 GestureRecognizer类来识别交叉滑动手势,但我还想通过水平移动选择的项目来为这个手势设置动画。
我想将 String 行标记化为标记(存储到 String 表中),并且我只能使用 java.io.*它是为了实现一个计算器。 例如:第一行:1+2+3第二行:1+ 2*3(标记之间有空格) 进入表{
我有一个 ListView 控件来显示项目,我想提供一个滑动/滑动手势来选择一个项目。我用 GestureRecognizer类来识别交叉滑动手势,但我还想通过水平移动选择的项目来为这个手势设置动画。
我有一个导航栏,当单击菜单图标时,它将滑入“#secondary-nav”并隐藏“#primary-nav”。然而 jquery 似乎没有显示“#secondary-menu”。下面提供的是 HTMl
这个问题已经有答案了: how to make a sliding up panel like the Google Maps app? (2 个回答) 已关闭 7 年前。 我正在寻找类似的实现,如下
我有 ViewPager(Slide) 和 3 张图片。共有三个图像是通过 Internet 下载的。如果我将图片换到服务器上的另一台服务器上,链接保持不变,但应用程序中的图片没有改变,仍然是缓存中的
我在 gridview 中创建了两个按钮。 我想达到以下目的,但不知道应该用什么方法? 首先我触摸第一个按钮,将显示 toast 1 msg。通过将我的手指滑到第二个按钮而不抬起我的手指,将显示 to
所以我设置了一个小的 jquery 动画,用户将鼠标悬停在容器上一段时间,这会导致容器 split ,然后显示内部信息。 我不希望鼠标一进入容器就开始动画,所以我在动画上放了一个delay()。现在动
这个问题在这里已经有了答案: Simulate swipe with mouse in javascript (5 个答案) 关闭 7 年前。
我希望我的 Sprite 像在冰上一样滑动。因此,如果他在地面上,那么他可以正常行走,但当他接触冰时,他会滑动,直到有东西阻止他。有谁知道如何才能做到这一点?谢谢 最佳答案 像“Sprite Move
我的代码有几个问题:HTML: Bellevue
我正在尝试实现从 fragment1 过渡到 fragment2 的滑动动画。我正在使用 setCustomAnimations 方法。而且我知道我需要使用框架方法来替换 fragment 。 我的代
我不知道你们是否听说过 app chomp,但应用程序中有一个布局,如下图所示。我想知道他们是如何设置的,我将如何使用它来为我自己的应用程序制作类似的东西。有趣的是,当你滑动时,没有像水平 Scrol
我想检测用户何时在一个单元格占据整个屏幕宽度的 collectionView 中向左或向右滑动。是否可以不添加手势识别器。我试过添加手势识别器,但只有当我们将 collectionView 的 scr
我正在尝试开发一个应用程序来复制类似 tinder 的基于滑动的提要。该应用程序的想法与火种非常相似,也具有向右滑动和向左滑动匹配功能。 到目前为止我做了什么-我在 MongoDB 中创建了一个刷卡集
我是一名优秀的程序员,十分优秀!