新手问题 我正在尝试找出如何在按钮周围包装文字。按钮atm在整个屏幕下方都有一个区域。
这是我的观点-拜托,谢谢您
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#3ea155ff"
android:padding="0.1dp"
android:weightSum="1">
<TextView
android:id="@+id/widgetMood"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1.11"
android:gravity="center"
android:shadowColor="@android:color/black"
android:shadowDx="1"
android:shadowDy="2"
android:shadowRadius="3"
android:text="Inspirational messages that update every 30 mins or click the lovemeditation icon for more.. "
android:textColor="@android:color/white">
</TextView>
<ImageButton
android:id="@+id/widgetBtn"
android:layout_width="60dp"
android:layout_height="wrap_content"
android:layout_gravity="end"
android:background="@null"
android:scaleType="fitStart"
android:src="@drawable/ic_launcher">
</ImageButton>
答案 0 :(得分:1)
问题是您正在使用LinearLayout
。这样,每个元素将占据其自己的空间部分而不会取代另一个。
尝试将LinearLayout
替换为RelativeLayout
,然后根据需要设置位置。