我正在使用切换按钮来选择收藏夹,并且在同一行中还有其他几个图像按钮。但是,由于切换按钮的行为与图像按钮不同,我的图标没有正确对齐。
此外,我正在以编程方式设置切换按钮的图像,因为它需要根据用户选择的内容更改按钮。我以编程方式这样做:
if (holder.favButton.isChecked())
holder.favButton.setBackgroundDrawable(context.getResources().
getDrawable(R.drawable.star_fill));
else
holder.favButton.setBackgroundDrawable(context.getResources().
getDrawable(R.drawable.star_empty));
请看截图。此图像中的两个图标都是 24 x 24
这是我的布局:
我尝试了几种组合,但似乎都没有奏效
这是我的布局:
<LinearLayout
android:id="@+id/share_c1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">
<ToggleButton android:id="@+id/fav_rec"
android:layout_width="35px"
android:layout_height="35px"
android:background="#ffffff"
android:focusable="false"
android:layout_marginRight="10dp"
android:paddingBottom="15px"
android:textOn="" android:textOff="" android:layout_alignParentLeft="true"
/>
<ImageButton
android:id="@+id/edit"
android:layout_width="35px"
android:layout_height="35px"
android:background="#ffffff"
android:focusable="false"
android:layout_marginRight="10dp"
android:layout_alignParentLeft="true"
android:paddingBottom="5px"
android:src="@drawable/pencil_1"/>
</LinearLayout>