尝试在 TextView 旁边添加“-”减号和“+”加号按钮,但它会自动将其放在 TextView 下方?
Trying to add "-" minus & "+" plus buttons next to the TextView but it automatically puts it below the TextView?
这是迄今为止我为轮播制作的每张卡片所编写的代码。另外,不确定是使用 ImageButton 还是 Button,因为我正在尝试做一个“-”/“+”按钮供用户按下。
<androidx.appcompat.widget.LinearLayoutCompat xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:gravity="center"
android:orientation="vertical">
<androidx.cardview.widget.CardView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="10dp"
app:cardCornerRadius="22dp">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<!-- ImageView for images placed above the text-->
<ImageView
android:id="@+id/imageIv"
android:layout_width="match_parent"
android:layout_height="150dp"
android:scaleType="centerCrop" />
<!-- TextView is right below the image-->
<TextView
android:id="@+id/flavorTv"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="8dp"
android:text="Flavor 1"
android:textSize="15sp" />
<!-- Trying to place the button on the same row as the TextView-->
<ImageButton
android:layout_width="20dp"
android:layout_height="20dp"/>
</LinearLayout>
</androidx.cardview.widget.CardView>
</androidx.appcompat.widget.LinearLayoutCompat>
用 ConstraintLayout 替换您的内部 LinearLayout,这样您就可以根据您定义的约束来定位视图。就像下面的例子:
<androidx.appcompat.widget.LinearLayoutCompat xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:gravity="center"
android:orientation="vertical">
<androidx.cardview.widget.CardView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="10dp"
app:cardCornerRadius="22dp">
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<!-- ImageView for images placed above the text-->
<ImageView
android:id="@+id/imageIv"
android:layout_width="0dp"
android:layout_height="150dp"
android:scaleType="centerCrop"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"/>
<!-- TextView is right below the image-->
<TextView
android:id="@+id/flavorTv"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:padding="8dp"
android:text="Flavor 1"
android:textSize="15sp"
app:layout_constraintTop_toBottomOf="@id/imageIv"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"/>
<!-- Trying to place the button on the same row as the TextView-->
<ImageButton
android:layout_width="20dp"
android:layout_height="20dp"
app:layout_constraintTop_toBottomOf="@id/imageIv"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toStartOf="@id/flavorTv"/>
</androidx.constraintlayout.widget.ConstraintLayout>
</androidx.cardview.widget.CardView>
</androidx.appcompat.widget.LinearLayoutCompat>
选项 1:
在线性布局中包装文本视图和图像:
<!-- TextView is right below the image-->
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<TextView
android:id="@+id/flavorTv"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="8dp"
android:text="Flavor 1"
android:textSize="15sp" />
<!-- Trying to place the button on the same row as the TextView-->
<ImageButton
android:layout_gravity="bottom"
android:layout_marginBottom="5dp"
android:layout_width="20dp"
android:layout_height="20dp"/>
</LinearLayout>
根据您的要求调整边距、边距。
选项 2:
将 drawable 与 textview 结合使用:
<TextView
android:drawableEnd="@drawable/cald"
android:id="@+id/flavorTv"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="8dp"
android:text="Flavor 1"
android:textSize="15sp" />
删除 ImageButton,使用图标并设置 textview.setOnviewClickListener 添加图像导航代码
这是迄今为止我为轮播制作的每张卡片所编写的代码。另外,不确定是使用 ImageButton 还是 Button,因为我正在尝试做一个“-”/“+”按钮供用户按下。
<androidx.appcompat.widget.LinearLayoutCompat xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:gravity="center"
android:orientation="vertical">
<androidx.cardview.widget.CardView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="10dp"
app:cardCornerRadius="22dp">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<!-- ImageView for images placed above the text-->
<ImageView
android:id="@+id/imageIv"
android:layout_width="match_parent"
android:layout_height="150dp"
android:scaleType="centerCrop" />
<!-- TextView is right below the image-->
<TextView
android:id="@+id/flavorTv"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="8dp"
android:text="Flavor 1"
android:textSize="15sp" />
<!-- Trying to place the button on the same row as the TextView-->
<ImageButton
android:layout_width="20dp"
android:layout_height="20dp"/>
</LinearLayout>
</androidx.cardview.widget.CardView>
</androidx.appcompat.widget.LinearLayoutCompat>
用 ConstraintLayout 替换您的内部 LinearLayout,这样您就可以根据您定义的约束来定位视图。就像下面的例子:
<androidx.appcompat.widget.LinearLayoutCompat xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:gravity="center"
android:orientation="vertical">
<androidx.cardview.widget.CardView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="10dp"
app:cardCornerRadius="22dp">
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<!-- ImageView for images placed above the text-->
<ImageView
android:id="@+id/imageIv"
android:layout_width="0dp"
android:layout_height="150dp"
android:scaleType="centerCrop"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"/>
<!-- TextView is right below the image-->
<TextView
android:id="@+id/flavorTv"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:padding="8dp"
android:text="Flavor 1"
android:textSize="15sp"
app:layout_constraintTop_toBottomOf="@id/imageIv"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"/>
<!-- Trying to place the button on the same row as the TextView-->
<ImageButton
android:layout_width="20dp"
android:layout_height="20dp"
app:layout_constraintTop_toBottomOf="@id/imageIv"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toStartOf="@id/flavorTv"/>
</androidx.constraintlayout.widget.ConstraintLayout>
</androidx.cardview.widget.CardView>
</androidx.appcompat.widget.LinearLayoutCompat>
选项 1:
在线性布局中包装文本视图和图像:
<!-- TextView is right below the image-->
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<TextView
android:id="@+id/flavorTv"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="8dp"
android:text="Flavor 1"
android:textSize="15sp" />
<!-- Trying to place the button on the same row as the TextView-->
<ImageButton
android:layout_gravity="bottom"
android:layout_marginBottom="5dp"
android:layout_width="20dp"
android:layout_height="20dp"/>
</LinearLayout>
根据您的要求调整边距、边距。
选项 2:
将 drawable 与 textview 结合使用:
<TextView
android:drawableEnd="@drawable/cald"
android:id="@+id/flavorTv"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="8dp"
android:text="Flavor 1"
android:textSize="15sp" />
删除 ImageButton,使用图标并设置 textview.setOnviewClickListener 添加图像导航代码