こんにちは、Viewにリップル効果onClickメソッドを追加しようとしていますが、これは機能しません。すべてのアイテムにIDがありますが、それを呼び出す方法がわかりません
これがコードです。
@Override
public void onClick(View v) {
int[] attrs = new int[]{R.attr.selectableItemBackground};
TypedArray typedArray = getActivity().obtainStyledAttributes(attrs);
int backgroundResource = typedArray.getResourceId(0, 0);
v.setBackgroundResource(backgroundResource);
switch (v.getId()) {
case ACTION_PLAY_ID:
Log.d(MainActivity.TAG, getString(R.string.detail_action_play));
v.setBackgroundResource(backgroundResource);
Intent intent = new Intent(getActivity(), PlayerActivity.class);
intent.putExtra(Video.VIDEO_TAG, videoModel);
startActivity(intent);
break;
case ACTION_BOOKMARK_ID:
if (bookmarked) {
v.setBackgroundResource(backgroundResource);
deleteFromBookmarks();
((ImageView) v).setImageDrawable(res.getDrawable(R.drawable.star_outline));
} else {
v.setBackgroundResource(backgroundResource);
addToBookmarks();
((ImageView) v).setImageDrawable(res.getDrawable(R.drawable.star));
}
break;
case ACTION_REMINDER_ID:
if (!isReminderSet) {
createReminderDialog((ImageView) v);
} else {
cancelReminder(liveTvProgram.getProgramId());
((ImageView) v).setImageDrawable(res.getDrawable(R.drawable.alarm));
}
break;
}
}
ルボミール
私はこのようなものを持っていますが、あまりにも働いていません:
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle
savedInstanceState) {
View view = inflater.inflate(R.layout.item_detail, container, false);
ButterKnife.bind(this, view);
View myView = view.findViewById(R.id.actions_container);
int[] attrs = new int[]{R.attr.selectableItemBackground};
TypedArray typedArray = getActivity().obtainStyledAttributes(attrs);
int backgroundResource = typedArray.getResourceId(0, 0);
myView.setBackgroundResource(backgroundResource);
loadImage();
init();
return view;
}
ImageViews(actionbuttons)は、LinearLayout actions_containerのJavaで作成しています
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:Android="http://schemas.Android.com/apk/res/Android"
Android:layout_width="match_parent"
Android:layout_height="match_parent">
<ImageView
Android:id="@+id/header_image"
Android:layout_width="250dp"
Android:layout_height="250dp"
Android:layout_alignParentLeft="true"
Android:layout_marginLeft="10dp"
Android:layout_marginStart="10dp"
Android:layout_marginTop="@dimen/detail_image_1_state"
Android:elevation="8dp"/>
<RelativeLayout
Android:id="@+id/container"
Android:layout_width="match_parent"
Android:layout_height="match_parent"
Android:layout_marginBottom="@dimen/detail_bottom_margin"
Android:layout_marginTop="@dimen/detail_top_margin"
Android:background="@color/primary_color">
<LinearLayout
Android:id="@+id/actions_container"
Android:layout_width="match_parent"
Android:layout_height="@dimen/detail_actions_height"
Android:layout_alignParentTop="true"
Android:background="@drawable/ripple_effect_image"
Android:elevation="2dp"
Android:orientation="horizontal"
Android:paddingLeft="300dp"
Android:paddingStart="300dp"/>
<LinearLayout
Android:id="@+id/content_container"
Android:layout_width="match_parent"
Android:layout_height="wrap_content"
Android:layout_below="@id/actions_container"
Android:orientation="vertical"
Android:paddingLeft="300dp"
Android:paddingStart="300dp">
<TextView
Android:id="@+id/title"
style="@style/TextTitleStyle"
Android:layout_width="wrap_content"
Android:layout_height="wrap_content"/>
<TextView
Android:id="@+id/subtitle"
style="@style/TextSubtitleStyle"
Android:layout_width="wrap_content"
Android:layout_height="wrap_content"
Android:visibility="gone"/>
<TextView
Android:id="@+id/duration"
style="@style/TextSubtitleStyle"
Android:layout_width="wrap_content"
Android:layout_height="wrap_content"/>
<TextView
Android:id="@+id/season"
style="@style/TextDescriptionStyle"
Android:layout_width="wrap_content"
Android:layout_height="wrap_content"
Android:visibility="gone"/>
<TextView
Android:id="@+id/episode"
style="@style/TextDescriptionStyle"
Android:layout_width="wrap_content"
Android:layout_height="wrap_content"
Android:visibility="gone"/>
<TextView
Android:id="@+id/description"
style="@style/TextDescriptionStyle"
Android:layout_width="wrap_content"
Android:layout_height="wrap_content"
Android:maxLines="7"/>
</LinearLayout>
<FrameLayout
Android:id="@+id/recommended_frame"
Android:layout_width="match_parent"
Android:layout_height="200dp"
Android:layout_alignParentBottom="true">
<Android.support.v17.leanback.widget.HorizontalGridView
Android:id="@+id/recommendation"
Android:layout_width="match_parent"
Android:layout_height="wrap_content"
Android:clipChildren="false"
Android:clipToPadding="false"
Android:paddingLeft="10dp"
Android:paddingRight="10dp"/>
</FrameLayout>
<TextView
Android:id="@+id/recommended_text"
style="@style/TextHeaderStyle"
Android:layout_width="match_parent"
Android:layout_height="wrap_content"
Android:layout_above="@id/recommended_frame"
Android:text="@string/related_programs"/>
</RelativeLayout>
</RelativeLayout>
また、私のXMLリップル効果ファイルは次のようなものです:
<?xml version="1.0" encoding="utf-8"?>
<ripple xmlns:Android="http://schemas.Android.com/apk/res/Android"
Android:color="@color/dark_primary_color">
<item>
<color Android:color="@color/dark_primary_color" />
</item>
<item Android:id="@Android:id/mask">
<shape Android:shape="rectangle">
<solid Android:color="?android:colorAccent" />
</shape>
</item>
</ripple>
クリック可能なビュー
一般的に、通常のボタンのリップル効果はAPI 21でデフォルトで機能し、その他のタッチ可能なビューでは、指定することで実現できます
Android:background="?android:attr/selectableItemBackground"
コード内:
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.your_layout);
View myView = findViewById(R.id.myView);
int[] attrs = new int[]{R.attr.selectableItemBackground};
TypedArray typedArray = getActivity().obtainStyledAttributes(attrs);
int backgroundResource = typedArray.getResourceId(0, 0);
myView.setBackgroundResource(backgroundResource);
}
さざ波背景を作成する
view_background.xml
<?xml version="1.0" encoding="utf-8"?>
<ripple xmlns:Android="http://schemas.Android.com/apk/res/Android"
Android:color="@color/blue" >
<item Android:drawable="@drawable/view_normal">
</item>
</ripple>
view_noraml.xml //これは通常の表示方法です
<?xml version="1.0" encoding="utf-8"?>
<shape
xmlns:Android="http://schemas.Android.com/apk/res/Android"
Android:shape="rectangle" >
<corners
Android:radius="@dimen/button_corner"/>
<solid
Android:color="@Android:color/transparent"/>
<stroke
Android:width="0.5dp"
Android:color="@color/white"/>
</shape>
view_backgroundをビューに設定します
例
<FrameLayout
xmlns:Android="http://schemas.Android.com/apk/res/Android"
Android:layout_width="match_parent"
Android:layout_height="120dp"
Android:foreground="@drawable/view_background"
Android:clickable="true"
Android:focusable="true"
>
<ImageView
Android:id="@+id/grid_item_imageView"
Android:layout_width="match_parent"
Android:layout_height="120dp"
Android:layout_gravity="center"
Android:scaleType="centerInside"
/>
</FrameLayout>
あなたは付け加えられます:
<ImageView
Android:layout_width="wrap_content"
Android:layout_height="wrap_content"
Android:clickable="true"
Android:background="@drawable/ripple"/>
Lubomir Babev's answer で述べたように、Android:background="?android:attr/selectableItemBackground"
を追加するとうまくいきます。
ただし、ビューにすでに背景がある場合は、代わりにAndroid:foreground
属性で同じものを使用できます。
Android:background="@color/anyColor"
Android:foreground="?android:attr/selectableItemBackground"
Android:foreground
はAPI 23+でのみサポートされています。
これに対する解決策は、私の側では簡単で簡単です。
波及効果は次のとおりです。
<?xml version="1.0" encoding="utf-8"?>
<ripple xmlns:Android="http://schemas.Android.com/apk/res/Android"
Android:color="#BFB3F7">
<item Android:id="@Android:id/mask">
<shape Android:shape="oval">
<solid Android:color="@color/button_background_color" />
</shape>
</item>
</ripple>
そして次にクラスで関数setBackgroundを検索する必要があります
それから私はそれに描画可能なアイテムを宣言する必要があります。このようなもの:
@Override
public void onFocusChange(View v, boolean hasFocus) {
if (hasFocus) {
v.setBackground(res.getDrawable(R.drawable.ripple_effect_for_buttons));
scrollContainer(false);
} else {
v.setBackground(null);
if (recommendation.getFocusedChild() != null) {
scrollContainer(true);
}
}
}
そしてYUPIIはその働き