2個textviews之間默認的空間這是我的xml:如何減少在RelativeLayout的
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_main"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.MainActivity">
<TextView
android:id="@+id/a"
android:textSize="@dimen/logo_text"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textColor="@color/dark_grey"
android:text="@string/a" />
<TextView
android:id="@+id/b"
android:layout_below="@id/a"
android:textSize="@dimen/logo_text"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textColor="@color/light_grey"
android:text="@string/b" />
</RelativeLayout>
將導致它們之間有一定的空間兩行文字。我想擺脫這個空間,讓兩行字符串彼此更接近。那可能嗎?
你能把所有的佈局文件嗎? –
兩個元素之間沒有默認空間 - 其字面上爲0像素。如果你看到一些,它內置到你使用的字體中。 –
我用我使用的實際代碼編輯了它。也許這是建立在我的主題? –