我無法將兩個textveiw放在彼此之下。我嘗試使用 android:Layout_below =「@ + id/title」,但第二個textview始終放在遠處,而不是低於第一個文本視圖。如何將兩個textveiws精確地放置在彼此之下?線性佈局中的Android文本查看器
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<fragment xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:map="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/map"
android:name="com.google.android.gms.maps.SupportMapFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="top"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#453b4da7"
android:orientation="horizontal">
<ImageButton
android:id="@+id/ThumbnailView"
android:layout_width="50dp"
android:layout_height="50dp"
android:layout_margin="0dp"
android:background="@drawable/ic_launcher" />
<TextView
android:id="@+id/title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignTop="@+id/ThumbnailView"
android:layout_toRightOf="@+id/ThumbnailView"
android:text="loading City"
android:textColor="#FF040404"
android:textSize="15dip"
android:textStyle="bold"
android:typeface="sans" />
<TextView
android:id="@+id/location"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/title"
android:layout_marginTop="20dip"
android:layout_toRightOf="@+id/ThumbnailView"
android:text="Loading Locality"
android:textColor="#343434"
android:textSize="10dip" />
</LinearLayout>
</LinearLayout>
</FrameLayout>
你嘗試過什麼?提供更多信息將使社區能夠更好地幫助您解決問題 –