我正在尝试设置一个将在整个应用程序中保留的背景图像(droid.png在res / drawable-ldpi中)
styles.xml:
<resources>
<style name="AppTheme">
<item name="android:background">@drawable/droid_background</item>
</style>
</resources>
droid_background.xml:
<bitmap xmlns:android="http://schemas.android.com/apk/res/android"
android:src="@drawable/droid" />
的AndroidManifest.xml:
<application android:theme="@style/AppTheme">
<activity android:name="org.laser.titanium.titaniumclient.TitaniumStart">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name="TitaniumGetLoginCredentials">
<intent-filter></intent-filter>
</activity>
<activity android:name="TitaniumMain">
<intent-filter></intent-filter>
</activity>
</application>
activity_main.xml中
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/TableLayout1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
tools:context=".TitaniumStart" >
<TableRow
android:id="@+id/tableRow1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1.0">
<Button
android:id="@+id/button1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Button" />
<Button
android:id="@+id/button2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button" />
<Button
android:id="@+id/button3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button" />
</TableRow>
<TableRow
android:id="@+id/tableRow2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1.0">
<Button
android:id="@+id/button5"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button" />
<Button
android:id="@+id/button6"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button" />
<Button
android:id="@+id/button4"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button" />
</TableRow>
<TableRow
android:id="@+id/tableRow3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1.0">
<Button
android:id="@+id/button7"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button" />
<Button
android:id="@+id/button8"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button" />
<Button
android:id="@+id/button9"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button" />
</TableRow>
</TableLayout>
我已经删除了我认为无关紧要的任何内容,让我知道是否缺少某些内容...我的问题是,通过将主题应用于应用程序,后台标记将被传递到tablelayout和tablerows因此,不是单个背景图像,而是每行显示一个压扁的副本。
似乎在每个表行中设置android:background =“@ null”都会给出所需的结果,因此可能的解决方案是:
styles.xml:
<resources>
<style name="AppTheme">
<item name="android:background">@drawable/droid_background</item>
</style>
<style name="TableLayoutRow">
<item name="android:background">@null</item>
</style>
</resources>
并将style="@style/TableRowView"
添加到每个<TableRow>
代码