We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
crash at the opening of the application
my layout :
<?xml version="1.0" encoding="utf-8"?> <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" android:layout_width="match_parent" android:layout_height="match_parent" android:background="#FFFFFFFF"> <FrameLayout android:layout_width="match_parent" android:layout_height="match_parent" android:clipChildren="false"> <RelativeLayout android:background="#FF02ADEA" android:id="@+id/blurred_view" android:layout_width="600dp" android:layout_height="600dp" android:layout_gravity="center" android:clipChildren="false"> </RelativeLayout> </FrameLayout> <com.fivehundredpx.android.blur.BlurringView android:id="@+id/blurring_view" android:layout_width="360dp" android:layout_height="360dp" android:layout_gravity="center" app:blurRadius="11" app:downsampleFactor="6" app:overlayColor="#99FFFFFF"/> <ImageView android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_gravity="center" android:src="@drawable/ic_launcher"/> </FrameLayout>
my java :
import android.os.*; import android.app.*; import com.fivehundredpx.android.blur.BlurringView; import android.support.v7.app.AppCompatActivity; import android.graphics.Color; import android.view.View; import android.widget.ImageView; import android.widget.LinearLayout; import android.widget.FrameLayout; public class ActivityIconThemeCyano extends AppCompatActivity { private BlurringView blV; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.icon_themecyano); makeAppFullscreen(); blV = (BlurringView)findViewById(R.id.blurring_view); View imgV = findViewById(R.id.blurred_view); blV.setBlurredView(imgV); } private void makeAppFullscreen() { getWindow().setStatusBarColor(Color.TRANSPARENT); getWindow().getDecorView().setSystemUiVisibility( View.SYSTEM_UI_FLAG_LAYOUT_STABLE | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN); } }
did I do something wrong ? My API is 21-23
The text was updated successfully, but these errors were encountered:
Did you add renderscriptTargetApi 21 renderscriptSupportModeEnabled true in build.gradle?
Sorry, something went wrong.
Yes my target API is 23
renderscriptTargetApi 23 renderscriptSupportModeEnabled true
No branches or pull requests
crash at the opening of the application
my layout :
my java :
did I do something wrong ? My API is 21-23
The text was updated successfully, but these errors were encountered: