android:layout_height="wrap_content"
android:orientation="horizontal"
android:background="?attr/selectableItemBackground"
android:clickable="true"
android:focusable="true">
<HorizontalScrollView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:fillViewport="true"
android:scrollbars="none"
android:layout_weight="1"
android:clickable="false">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="50dp"
android:layout_marginStart="5dp"
android:gravity="center_vertical"
android:orientation="horizontal"
android:clickable="false">
<ImageView
android:layout_width="@dimen/common_property_ic_size"
android:layout_height="@dimen/common_property_ic_size"
android:layout_marginLeft="@dimen/common_block_space"
android:layout_marginRight="@dimen/common_block_space"
android:src="@drawable/ic_brew" />
<TextView
style="@style/AppTheme.Paragraph"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginEnd="@dimen/common_block_space_half"
android:gravity="center_vertical"
android:text="@string/text_view_brew"
android:clickable="false"/>
<TextView
android:id="@+id/activity.beer.detail.text.view.brew"
style="@style/AppTheme.Paragraph"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:focusable="true"
android:focusableInTouchMode="true"
android:gravity="center_vertical|start"
android:singleLine="true"
android:text="@string/title_sm_no_set_a"
android:clickable="false"/>
</LinearLayout>
</HorizontalScrollView>
<ImageView
android:layout_width="@dimen/arrow_right_width"
android:layout_height="@dimen/arrow_right_height"
android:src="@drawable/ic_arrow_right"
android:layout_gravity="center_vertical"
android:clickable="false"/>
</LinearLayout>
Не надо всех этих false. Убрать. Просто вешаем обработчик кликов на то что надо кликать, а на остальное не вешаем.
Обсуждают сегодня