我有一个活动,我暂时称它为 mainactivity。我想知道如何给它加上背景。我知道如何通过添加来添加背景android:background="@drawables/background"
但我想将它对齐到右下角(重力)并保持它的原始比例,因为背景标签正在拉伸它
这就是我到目前为止所得到的。一个styles.xml 文件和线性布局上的背景标签设置为@style/Background
样式文件:
<style name="Background">
<ImageView
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/background"
android:gravity="bottom|right"
/>
</style>
我要添加/更改什么(或我能做的任何其他事情)以使可绘制的“锁定”到右下角?
谢谢