更改recyclerView子项中的可见性

时间:2017-10-22 11:29:52

标签: android xml android-layout button shape

我的android开发人员有点问题。正如它在第二张图片中显示的那样,我希望在EditText附近有一个圆形(完美的圆形)按钮。为了实现这一点,我使用了一个单独的布局(第一个图像),在其中我定义了具有形状的按钮(见下图)。由于我想要一个完美的圆圈,我把这个布局放在一个Constraint布局中,以保持比例。 现在,由于这种方式不起作用:我怎样才能实现完美的圆圈? 考虑到这一点,我不能放入形状布局,因为此按钮的尺寸可以针对不同的活动进行更改。

这是形状文件,设置为android:shape =" oval" (戒指不能正常工作):

<shape
xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="oval">

<solid
    android:color="#666666"/>

这是按钮布局:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/ll"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center">

<Button
    android:id="@+id/circle_button"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:text="dadada"
    android:background="@drawable/ring_shape" />

</LinearLayout>

这是使用按钮的布局。请考虑这是recyclelerView的单行:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/category_row"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="5dp"
android:layout_marginTop="5dp"
android:orientation="horizontal"
android:weightSum="6">

<android.support.constraint.ConstraintLayout
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_weight="1">

    <include
        layout="@layout/circle_button_layout"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintDimensionRatio="h,1:1" />

</android.support.constraint.ConstraintLayout>

<EditText
    android:id="@+id/category_name_row"
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_gravity="center_vertical"
    android:layout_marginLeft="10dp"
    android:layout_marginStart="10dp"
    android:inputType="textAutoCorrect"
    android:background="@android:color/transparent"
    android:layout_weight="3.4"
    android:textColor="@color/category_text"
    android:textSize="@dimen/payment_text"/>

<ImageButton
    android:id="@+id/category_btn_confirm_change"
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:src="@drawable/ic_btn_done"
    android:tint="@color/hint_text"
    android:layout_gravity="center_vertical"
    android:background="@color/transparent"
    android:layout_marginRight="15dp"
    android:layout_marginEnd="15dp"
    android:layout_weight="0.8"/>

<ImageButton
    android:id="@+id/category_btn_delete"
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:src="@drawable/ic_btn_delete"
    android:tint="@color/hint_text"
    android:layout_gravity="center_vertical"
    android:background="@color/transparent"
    android:layout_marginRight="15dp"
    android:layout_marginEnd="15dp"
    android:layout_weight="0.8"/>

 </LinearLayout>

有些图片要清楚:

Single button layout

Single button layout

Row layout

Row layout

3 个答案:

答案 0 :(得分:0)

您可以使用方形布局。然后在里面把那个形状放在行布局中。 Use this square layout from github

答案 1 :(得分:0)

在形状文件中尝试此操作。

<size
    android:width="36dp"
    android:height="36dp"/>

<solid android:color="#666666" />

答案 2 :(得分:0)

您需要在布局中更改两件小事:

  1. 摆脱LinearLayout

    周围的Button包装
    <?xml version="1.0" encoding="utf-8"?>
    <Button xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/circle_button"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:text="dadada"
        android:background="@drawable/ring_shape" />
    
  2. android:layout_width="0dp"android:layout_height="0dp"添加到您的<include/>元素中:

    <include
        android:layout_width="0dp"
        android:layout_height="0dp"
        layout="@layout/circle_button_layout"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintDimensionRatio="h,1:1" />
    
  3. enter image description here