- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我知道已经有很多问题在讨论这个问题,但我仍然无法弄清楚我的实现有什么问题。
我正在使用 SherlockFragmentActivity 和具有 4 个选项卡的 ActionBar,每个选项卡用不同的 Fragment 填充 FrameLayout。
到这里我没有问题,选项卡在 fragment 之间完美切换。
但是在单击 searchButton 时在选项卡“购买”上,我使用 Activity1 NavigateTo 方法将 FrameLayout 替换为另一个 ListFragment,这会导致与当前 Fragment 重叠,并且无论我从这一点开始做什么都不会消失。
请指教,我已经阅读了所有的解决方案,但找不到问题,如果需要另一部分代码,请告诉我
这是我的代码: Activity 1:
public class Activity1 : SherlockFragmentActivity, ActionBar_Sherlock.App.ActionBar.ITabListener
{
protected override void OnCreate(Bundle bundle)
{
base.OnCreate(bundle);
userid = 2;
// Set our view from the "main" layout resource
SetContentView(Resource.Layout.Main);
SupportActionBar.NavigationMode = (int)ActionBarNavigationMode.Tabs;
SupportActionBar.SetDisplayShowTitleEnabled(true);
//Set the mobile service Sale table adapter
//this.adapter = new SalesAdapter(this.MobileServiceContext.SaleTable, Resource.Layout.OffersListItem, this);
//Initialize tabs
Tab tab = SupportActionBar.NewTab();
tab.SetTag("MyProfile");
tab.SetText("My Profile");
tab.SetTabListener(this);
SupportActionBar.AddTab(tab);
tab = SupportActionBar.NewTab();
tab.SetTag("Buy");
tab.SetText("Buy");
tab.SetTabListener(this);
SupportActionBar.AddTab(tab);
tab = SupportActionBar.NewTab();
tab.SetTag("Sell");
tab.SetText("Sell");
tab.SetTabListener(this);
SupportActionBar.AddTab(tab);
tab = SupportActionBar.NewTab();
tab.SetTag("Rates");
tab.SetText("Rates");
tab.SetTabListener(this);
SupportActionBar.AddTab(tab);
}
public void OnTabSelected(Tab tab, Android.Support.V4.App.FragmentTransaction ft)
{
string tag = tab.Tag.ToString();
Android.Support.V4.App.Fragment f = SupportFragmentManager.FindFragmentByTag(tag);
if (f != null)
{
ft.Show(f);
return;
}
if (tag == "MyProfile")
f = new Fragments.MyProfileFragment();
else if (tag == "Buy")
f = new Fragments.BuyFragment();
else if (tag == "Sell")
f = new Fragments.SaleFragment();
else if (tag == "Rates")
f = new Fragments.BuyFragment();
ft.Add(Resource.Id.fragmentContainer, f, tag);
}
public void OnTabUnselected(Tab tab, Android.Support.V4.App.FragmentTransaction ft)
{
string tag = tab.Tag.ToString();
Android.Support.V4.App.Fragment f = SupportFragmentManager.FindFragmentByTag(tag);
if (f != null)
{
ft.Hide(f);
return;
}
}
public void OnTabReselected(Tab tab, Android.Support.V4.App.FragmentTransaction ft)
{
//Do nothing
}
public void NavigateTo(Android.Support.V4.App.Fragment newFragment)
{
Android.Support.V4.App.FragmentManager manager = SupportFragmentManager;
Android.Support.V4.App.FragmentTransaction ft = manager.BeginTransaction();
ft.Replace(Resource.Id.fragmentContainer, newFragment);
ft.SetTransition((int)FragmentTransit.FragmentFade);
// Add this trnasaction to the back stack, so when the user press back,
// it rollbacks.
ft.AddToBackStack(null);
ft.Commit();
}
public override void OnBackPressed()
{
Android.Support.V4.App.FragmentManager manager = SupportFragmentManager;
if (manager.BackStackEntryCount > 0)
{
base.OnBackPressed();
}
else
{
}
}
}
这是主布局:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<FrameLayout
android:id="@+id/fragmentContainer"
android:layout_width="match_parent"
android:layout_height="0dip"
android:layout_weight="1" />
</LinearLayout>
这是 BuyFragment:
public class BuyFragment : Android.Support.V4.App.Fragment
{
private Activity1 myActivity;
private string currency;
private int amount;
private EditText buyAmount;
private Button searchButton;
private Spinner currencySpinner;
public override void OnCreate(Bundle savedInstanceState)
{
base.OnCreate(savedInstanceState);
myActivity = (Activity1)this.Activity;
}
public override void OnActivityCreated(Bundle savedInstanceState)
{
base.OnActivityCreated(savedInstanceState);
//Init the currency spinner
currencySpinner = this.Activity.FindViewById<Spinner>(Resource.Id.spinnerBuy);
myActivity.InitCurrencySpinner(currencySpinner);
//Parse the amount text to int
buyAmount = this.Activity.FindViewById<EditText>(Resource.Id.buyEdittext);
buyAmount.AfterTextChanged += (sender, args) =>
{
//
int result;
int.TryParse(buyAmount.Text, out result);
amount = result;
};
searchButton = this.Activity.FindViewById<Button>(Resource.Id.buyButton);
searchButton.Click += (sender, e) =>
{
OnClickSearch(sender, e);
};
//Disable all buttons if the adapter is updating
myActivity.SalesAdapter.IsUpdatingChanged += (s, e) =>
{
this.buyAmount.Enabled =
this.currencySpinner.Enabled =
this.searchButton.Enabled =
!myActivity.SalesAdapter.IsUpdating;
};
}
public override View OnCreateView(LayoutInflater inflater, ViewGroup container, Bundle bundle)
{
return inflater.Inflate(Resource.Layout.BuyLayout, container, false);
}
private void OnClickSearch(object sender, EventArgs eventArgs)
{
try
{
if (amount > 0)
{
currency = currencySpinner.SelectedItem.ToString();
SearchOffers();
this.buyAmount.Text = null;
}
else
{
Toast.MakeText(this.Activity, "Amount must be a number larger than 0", ToastLength.Short).Show();
}
}
catch (Exception e)
{
Console.WriteLine("SaleFragment.OnClickPutForSale: {0} Exception caught.", e.InnerException);
}
}
private void SearchOffers()
{
//Check what fragment is shown, replace if needed.
var fragmentContainer = FragmentManager.FindFragmentById(Resource.Id.fragmentContainer) as SearchListFragment;
if (fragmentContainer == null)
{
// Make new fragment to show this selection.
fragmentContainer = SearchListFragment.NewInstance(amount, currency);
// Execute a transaction, replacing any existing
// fragment with this one inside the frame.
myActivity.NavigateTo(fragmentContainer);
}
//else
//{
// fragmentContainer.Arguments.PutString("currency", currency);
// fragmentContainer.Arguments.PutInt("amount", amount);
// myActivity.NavigateTo(fragmentContainer);
//}
}
购买布局:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:padding="10dip"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dip"
android:text="@string/currency_prompt"
android:layout_marginBottom="10dp" />
<Spinner
android:id="@+id/spinnerBuy"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:prompt="@string/currency_prompt"
android:layout_marginTop="10dp"
android:layout_marginBottom="10.0dp" />
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dip"
android:text="@string/amount_prompt"
android:layout_marginBottom="10dp" />
<EditText
android:id="@+id/buyEdittext"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:layout_marginBottom="10dp"
android:inputType="number" />
<Button
android:text="@string/BuyButton"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/buyButton"
android:layout_marginTop="10dp"
android:layout_marginBottom="10dp" />
</LinearLayout>
最佳答案
替换:
ft.Add(Resource.Id.fragmentContainer, f, tag);
与:
ft.Replace(Resource.Id.fragmentContainer, f, tag);
关于android - xamarin android fragment 重叠,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17572171/
我对具有 2 个轴的数据有交叉识别问题,例如 A = array([['x0', 'y0', 'data0', 'data0'], ['x0', 'y0', 'data0', '
我知道这是代码有点傻,但有人可以解释为什么 isList [42]返回 True而isList2 [42]打印 False ,以及如何防止这种情况?我想更好地理解一些更晦涩的 GHC 类型扩展,我认为
我正在使用memmove(),但目标似乎正在覆盖源,或者也许我不明白覆盖是什么。我有一个 char 数组(目标),然后是一个指向目标的指针,该指针位于 vector 内部。 char destinat
以下AS3代码有时会导致音频多次播放,就像疯狂的回声一样,几乎同时播放。通常使用该URL都可以,但是当我使用https://soundcloud.com url时,它总是会发疯。在极少数情况下,我认为
我正在尝试在 android 2.2 中实现类似操作栏的东西。这是我的 main.xml
如何避免第一个值的重叠问题 而且,我怎样才能看到最后一个被剪裁的值? 最佳答案 我认为您在修改轴上的样式和调整视口(viewport)之间有几种选择。 我会尝试: 禁用左轴,启用右轴 chart.le
我正在构建一个简单的应用程序,您可以在其中使用纸娃娃之类的工具来描述您的外观。 Check out this image.计划是有 4 个水平 ScrollView :第一个用于发型,第二个用于面部毛
我有一个问题...我在绝对布局中有两个 ScrollView 。换句话说,它们是全屏的并且相互重叠 上面的scrollview是水平滚动的,下面的是垂直滚动的scrollview。 当我水平滚动时,我
我看了一些类似的问题,但我不太明白在我的层次结构中我应该做什么? 我有 用于屏幕底部的标签菜单 和 对于其他将创建的 fragment 。 我有 9 个标签菜单,每个都是 fragment 。 一
在我的 Android 应用程序中,我有一个编辑文本和一个按钮,单击该按钮会向我的主要 Activity 添加一个 fragment ,其中包含在我的编辑文本中写入的消息。问题是,当我更改消息并单击按
在我的分段控件中,有时标题比其段宽。我怎样才能让它截断? 假设第 1 段的标题是 Text overlaps,第 2 段的名称是 ok。 我希望它看起来如何: [Text ov...| ok
我想创建一个带有重叠单元格的 uitableview,如下图所示。问题是,即使我为单元格的内容 View 设置 clipsToBounds = NO,单元格假标题(例如,将与前一个单元格重叠的西类牙语
有了这个CSS .addProblemClass{ width:300px; height:300px; /*width:25%; height:40%;*/
我有跨窗口移动的图像(2 行),当我离开页面选项卡时,然后返回它,所有图像都相互堆叠。 JS代码(记入jfriend00) function startMoving(img) { va
这是我的一段代码。图像在 23 毫秒后正常可见,但永远不会像第二行所示那样返回隐藏状态。如果我将其从 17 毫秒更改为大于 23 毫秒的值,它就会起作用。反之亦然,如果我将第一行更改为 16 毫秒,它
我正在可汗学院为学校项目编写一款太空入侵者游戏,但我不知道如何在子弹和外星人之间进行碰撞,然后摆脱子弹所碰撞的外星人。这是非常基本的 JS,尽管我尝试过,但我不太明白如何将有关该主题的其他答案放入我的
当我尝试重新加载 tableView 的数据时出现奇怪的重叠,导致单元格的高度发生变化(使用 UITableViewAutomaticDimension),然后内容与上面的单元格重叠,无法弄清楚怎么做
我是一个新手,如果这是一个愚蠢的问题,请原谅我。我想有一个部分与标题分开,但发生了两种情况: (1) 当我把 在 下面,它们相互重叠,如下所示: Section overlapping header
我正在尝试创建两个 那是重叠的。唯一的问题是第二个 在第一个的前面它必须是相反的。我尝试设置第一个 的 z-index至 1但它仍然不起作用。 这是我的代码: #content{ backgrou
是否有重叠 2 个 div 的有效方法。 我有以下内容,但无法让它们重叠。 #top-border{width:100%; height:60px; background:url(image.jpg)
我是一名优秀的程序员,十分优秀!