有没有办法或其他方法来解决我的问题?
这是我的情况的一个简单示例(那不是真实的,它是类似的)。我有一个活动:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/lib/com.google.ads"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#000000"
tools:context=".MainActivity" >
<com.loopj.android.image.SmartImageView
android:id="@+id/image_switcher"
android:layout_width="500dp"
android:layout_height="match_parent"
android:layout_alignParentTop="true" />
在那个活动中,我有一个 android:layout_width="500dp"。此处的值 500 需要从数据库中获取并在此处用于活动中。
如何从活动调用数据库?任何解决方案都是可以接受的,因为它是可行的:)
我有一些想法:在 onCreate 活动中调用数据库,它们以某种方式设置我需要的属性的值。
我是 android 的新手,很有趣,但我没有人要问。
谢谢