私のアプリケーションでは、画面の背景に画像を設定しましたが、この画面のようにピクセルをストレッチしています
bitmapstrech.xml put onbackground を使用するソリューションが表示されますが、画面は次のようになります
背景に bitmapSrech.xml を使用した後、背景を調整して画像のストレッチを停止するにはどうすればよいですか?
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@drawable/bitmapstrech"
android:orientation="horizontal" >
<ImageView
android:id="@+id/btnback"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingLeft="5dp"
android:paddingTop="20dp"
android:src="@drawable/back" >
</ImageView>
<ImageView
android:id="@+id/test_button_image2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:paddingLeft="5dp"
android:paddingRight="15dp"
android:paddingTop="15dp"
android:src="@drawable/options1" />
</RelativeLayout>