gpt4 book ai didi

android - 如何启动 list 中提到的不存在的 Activity ?

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:54:57 25 4
gpt4 key购买 nike

我正在尝试开发“动态”Android 应用程序。

动态的意思是我在 list 中列出了一个在运行时“构建”的 Activity 。

我可以很好地构建所需的 Activity ,但是,当我尝试启动它时,我的应用程序失败并显示...

    java.lang.RuntimeException: Unable to instantiate activity ComponentInfo{com.research.ps/com.research.Dynamic}: java.lang.ClassNotFoundException: 
Didn't find class "com.research.Dynamic" on path: DexPathList[[zip file "/data/app/com.research.ps-1/base.apk"],nativeLibraryDirectories=[/data/app/com.research.ps-1/lib/arm,
/data/app/com.research.ps-1/base.apk!/lib/armeabi-v7a, /vendor/lib, /system/lib]]

有没有一种方法可以在运行时成功实例化 Android Activity ?

有没有一种方法可以将“临时”或“外壳” Activity 添加到我的应用程序路径中?然后用我的动态实例替换“临时” Activity ?

更新

我的 list XML 包含此条目

<activity
android:name=".Dynamic"
android:label="@string/title_activity_dynamic"
android:theme="@style/AppTheme.NoActionBar" />

但是,我的应用程序中没有名为“Dynamic”的 Activity。

我正在使用 ByteBuddy 来构建我的动态 Activity :-

  final Class<? extends android.support.v7.app.AppCompatActivity> dynamicType = new ByteBuddy(ClassFileVersion.JAVA_V8)
.subclass(android.support.v7.app.AppCompatActivity.class, IMITATE_SUPER_CLASS)
.name("com.research.Dynamic")
.make()
.load(getClass().getClassLoader(), new AndroidClassLoadingStrategy.Wrapping(this.getDir("dexgen", Context.MODE_PRIVATE)))
.getLoaded();

final Intent intent = new Intent(this, dynamicType);
startActivity(intent);

最佳答案

可以开始这样的Activity(假设您有一个dummy list Activity 条目)。
如果您不喜欢这种技术,请使用 Fragments(它们不需要条目 list )。
或者使用 WebViewJavaScript喜欢Apache Cordova等(也可以跨平台!)。
ByteBuddy (@Rafael Winterhalter 也是 Byte Buddy 的作者)看起来很酷,可能涉及学习曲线。为什么不下载 linked project并尝试这两种技术。
以下是如何在您的 Android Studio Gradle 项目 (build.gradle) 中包含 ByteBuddy:

android {
compileSdkVersion 25
buildToolsVersion '25'
dependencies {
compile 'com.android.support:appcompat-v7:25'
compile 'net.bytebuddy:byte-buddy:1.7.9'
compile 'net.bytebuddy:byte-buddy-android:1.7.9'
}
}

how I can "find" my dynamically instantiate class at runtime?

DEX文件的外部加载(类字节码)

See my answer here并点击源代码和教程的链接(Apache Ant {Eclipse compatible, build.xml} and Android Studio Gradle examples build .gradle 相同的代码,您需要这些项目提供的一些自定义构建步骤)。
代码 fragment :

        // Internal storage where the DexClassLoader writes the optimized dex file to.
final File optimizedDexOutputPath = getDir(SECONDARY_DEX_INTERNAL_DIR, Context.MODE_PRIVATE);

// Initialize the class loader with the secondary dex file.
DexClassLoader cl = new DexClassLoader(dexInternalStoragePath.getAbsolutePath(),
optimizedDexOutputPath.getAbsolutePath(),
null,
getClassLoader());
Class libProviderClazz = null;//variable libProviderClazz of type Class

try {
// Load the library class from the class loader.
libProviderClazz = cl.loadClass(PROVIDER_CLASS);

// Cast the return object to the library interface so that the
// caller can directly invoke methods in the interface.

// Alternatively, the caller can invoke methods through reflection,
// which is more verbose and slow.
LibraryInterface lib = (LibraryInterface) libProviderClazz.newInstance();

}
catch (Exception exception)
{
// Handle exception gracefully here.
exception.printStackTrace();
}

Q: How do I add an Activity, I cannot add it to the manifest ?
A: Use Fragments, they don't need entries in the manifest.

关于android - 如何启动 list 中提到的不存在的 Activity ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47390022/

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