应用加载时,我的应用会显示启动画面。我想在启动画面上的图标下方放置一个动画进度条。我尝试使用XML,但它崩溃了!说无效的标签进度条。
这是我在styles.xml
中调用启动画面的代码heatmap
这是我的background_splash.xml文件
<style name="AppTheme.BrandedLaunch" parent="AppThemeDark">
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
<item name="android:windowBackground">@drawable/background_splash</item>
</style>
我真的不想使用不同的方法制作启动画面,因为这种方法非常简单。有什么想法吗?
答案 0 :(得分:2)
关键在本教程中: http://www.logicchip.com/android-splash-screen-progress-bar/ 您必须在drawable文件夹中创建un文件:示例 splas_screen.xml
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="100dp"
android:layout_height="100dp">
<item>
<color android:color="@color/main_color_grey_50"/>
</item>
<item>
<bitmap
android:gravity="center"
android:filter="true"
android:src="@drawable/logomies"
/>
</item>
</layer-list>
将新样式添加到文件styles.xml
<style name="SplashTheme" parent ="Theme.AppCompat.NoActionBar">
<item name="android:windowBackground">@drawable/splash_screen</item>
</style>
AndroidManifest文件你应该像你的LAUNCHER Activity一样设置SplashActivity。
<application
android:name=".ActBenApplication"
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/ActivityTheme">
<activity android:name=".main.ui.SplashActivity"
android:label="@string/app_name"
android:screenOrientation="portrait"
android:theme="@style/SplashTheme">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".main.MainActivity"
android:label="@string/app_name"
android:screenOrientation="portrait">
</activity>
</application>
重要的部分来到这里:您必须创建一个进度条所在的布局,此布局没有背景,因此进度条显示为斜线前进。
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/splash_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".main.ui.SplashActivity">
<ProgressBar
android:id="@+id/progressBar2"
style="?android:attr/progressBarStyleHorizontal"
android:visibility="visible"
android:indeterminateOnly="true"/>
</android.support.constraint.ConstraintLayout>
最后在您的Activity.java文件中:
public class SplashActivity extends AppCompatActivity{
@Override
protected void onCreate(@Nullable Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.splash);
new Handler().postDelayed(new Runnable() {
@Override
public void run() {
// This method will be executed once the timer is over
// Start your app main activity
Intent i = new Intent(SplashActivity.this, MainActivity.class);
startActivity(i);
// close this activity
finish();
}
}, 3000);
}
}
将 setContentView 设置为创建的布局。这就是全部..!
答案 1 :(得分:0)
不要在可绘制文件中放置像progressbar和imageview(bitmap)这样的小部件,而是将其添加到布局文件中,其中父布局应该是相对布局,然后将relativelayout背景颜色设置为splash_screen_bg并在其中添加imageview和progressbar相对布局。
答案 2 :(得分:0)
这是一个黑客。
SplashActivity.java
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
final View rootView = getWindow().getDecorView().getRootView();
rootView.setBackgroundDrawable(getResources().getDrawable(R.drawable.test));
rootView.post(new Runnable() {
@RequiresApi(api = Build.VERSION_CODES.LOLLIPOP)
@Override
public void run() {
((AnimationDrawable) rootView.getBackground()).start();
}
});
}
的test.xml
<?xml version="1.0" encoding="utf-8"?>
<animation-list xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/list"
android:oneshot="false">
<item
android:drawable="@drawable/frame_1"
android:duration="20" />
<item
android:drawable="@drawable/frame_2"
android:duration="20" />
<item
android:drawable="@drawable/frame_3"
android:duration="20" />
<item
android:drawable="@drawable/frame_4"
android:duration="20" />
<item
android:drawable="@drawable/frame_5"
android:duration="20" />
<item
android:drawable="@drawable/frame_6"
android:duration="20" />
<item
android:drawable="@drawable/frame_7"
android:duration="20" />
<item
android:drawable="@drawable/frame_8"
android:duration="20" />
<item
android:drawable="@drawable/frame_9"
android:duration="20" />
</animation-list>