gpt4 book ai didi

android - 带进度条的启动画面

转载 作者:行者123 更新时间:2023-11-30 04:06:54 25 4
gpt4 key购买 nike

<分区>

Possible Duplicate:
Android Activity Life Cycle

我可以使用主题为我的应用程序创建一个简单的启动画面,而且效果很好。但是,有时应用程序可能需要刷新大量数据,我想向用户显示一个 ProgressBar,让他们知道在等待时发生了什么。所以我放弃了主题并创建了一个布局资源并将其设置为我的 Splash Activity 的 ContentView,但没有任何显示。我的内容不仅没有显示(完全黑屏),而且标题栏继续显示,尽管试图以各种可能的方式隐藏它。

飞溅.axml

<?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"
android:gravity="center">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="15dp"
android:src="@drawable/logo" />
<LinearLayout
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="center">
<ProgressBar
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginRight="10dp" />
<TextView
android:id="@+id/progressText"
android:text="Loading..."
android:textSize="20dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="5dp" />
</LinearLayout>

飞溅.cs

[Activity(MainLauncher=true, NoHistory = true)]
public class Splash : Activity
{
protected override void OnCreate(Bundle bundle)
{
base.OnCreate(bundle);

RequestWindowFeature(WindowFeatures.NoTitle);

Window.SetFlags(WindowManagerFlags.Fullscreen, WindowManagerFlags.Fullscreen);

SetContentView(Resource.Layout.Splash);

string lastUpdated = PreferenceManager.GetDefaultSharedPreferences(this).GetString("LastInventoryUpdate", null);

DateTime lastUpdateDate = Convert.ToDateTime(lastUpdated);

TimeSpan span = DateTime.Today - lastUpdateDate;

if (string.IsNullOrEmpty(lastUpdated) || span.Days > 30)
{
TextView progressText = (TextView)FindViewById(Resource.Id.progressText);
progressText.Text = "Updating parts database. May take several minutes...";
InventoryRepository repository = ((MyApp)Application).Inventory;
repository.Execute();
}

StartActivity(typeof(Login));
}
}

仍然在标题栏中显示 Logo 和标题,内容完全没有。甚至尝试取出所有 AsyncTask 和 StartActivity 的东西,然后尝试使用启动布局加载 Activity。它最终确实出现了,但它首先显示为黑屏很长一段时间。无法想象为什么,因为这是我的主要启动器,除了设置 Activity 的内容之外几乎没有任何事情发生。

就显示的 TitleBar 而言,我也尝试将它添加到我的 list 中(我目前在另一个 Activity 中工作得很好)

<activity android:name="app.MyApp.Splash" android:theme="@android:style/Theme.NoTitleBar.Fullscreen"></activity>

如果我为 Activity 添加主题,标题栏就会消失,但我的布局资源永远不会显示。

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