1

我的应用在不同 Android 版本上的布局存在问题。我想向我的片段添加背景图像。在 Android 2.3.3 上它可以工作,但在版本 > 3 上我可以做我想做的事,它不会出现。

我的 Activity 的 activity_main.xml 看起来像这样:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="@drawable/background"
>
    <TexView
        android:id="@+id/text"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Hello World"
        />
</LinearLayout>

我的活动看起来像这样:

public class MainActivity extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
}
}

我也尝试使用样式,但没有帮助:

<style name="AppTheme" parent="android:Theme.Light">
    <item name="android:background">@drawable/background</item>
</style>

有没有其他方法可以解决这个问题?

4

0 回答 0