解決策は非常に明白だと思いますが、私がアンドロイドの新人である限り、私を許してください:)
ビューの右上にいくつかの画像を配置し、残りのビューに合うテキストビューを配置したいと思います。これが私がしたことです:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<ImageView
android:id="@+id/logo_in_listing"
android:layout_width="100dip"
android:layout_height="100dip"
android:layout_alignParentRight="true"
android:layout_marginRight="11dip"
android:layout_marginTop="11dip"
android:background="@drawable/border_for_imageview"
android:src="@drawable/facebook_logo" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/someString"
android:id="@+id/textview1"
android:layout_toLeftOf="@id/logo_in_listing"
android:layout_margin="3dip"/>
</RelativeLayout>
これが私が得るものです:
私の質問:
1)textviewをimageviewの下部にも合わせるにはどうすればよいですか?そのスペースを未使用のままにしたくありません。
2)ご覧のとおり、dip
ImageViewの配置にはsを使用しました。この場合、何をお勧めしますか?つまり、どのように書くか、それはすべての画面サイズで同じになるということですか?それともdip
大丈夫ですか?