Androidのすべてのインタフェースで透かしを実現する方法
12049 ワード
セキュリティに対する要求が高いappでは、すべてのインタフェースに透かしを付け、スクリーンショットによる顧客情報の漏洩を防止することが要求される.全体的な考え方は、最下位のレイアウトを取得することであり、レイアウトにはカスタムの透かしViewをaddし、Viewを追加するにはsetContentViewの後にしなければならないため、透かしを追加する過程をonStartに置き、複数回の追加を防止すると判断する.
ウォーターマークレイアウトのカスタマイズ
注意:RotateTextViewレイアウトからhttp://download.csdn.net/download/fangjxl/9485001
attr
java
RotateTextView
Activity
ウォーターマークレイアウトのカスタマイズ
注意:RotateTextViewレイアウトからhttp://download.csdn.net/download/fangjxl/9485001
<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:orientation="vertical"
android:background="#00000000">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="40dp"
android:orientation="horizontal" >
<RotateTextView
android:id="@+id/fragment_tag11"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="left"
android:layout_marginLeft="20dp"
android:text="@string/app_name"
android:textColor="#22666666"
android:textSize="22sp"
app:degree="350dp" />
<RotateTextView
android:id="@+id/fragment_tag12"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:layout_marginLeft="20dp"
android:text="@string/app_name"
android:textColor="#22666666"
android:textSize="22sp"
app:degree="350dp" />
<RotateTextView
android:id="@+id/fragment_tag13"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="right"
android:layout_marginLeft="20dp"
android:text="@string/app_name"
android:textColor="#22666666"
android:textSize="22sp"
app:degree="350dp" />
<RotateTextView
android:id="@+id/fragment_tag14"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="right"
android:layout_marginLeft="20dp"
android:text="@string/app_name"
android:textColor="#22666666"
android:textSize="22sp"
app:degree="350dp" />
LinearLayout>
LinearLayout>
FrameLayout>
attr
<declare-styleable name="RotateTextView">
<attr name="degree" format="dimension" />
declare-styleable>
java
RotateTextView
public class RotateTextView extends TextView {
@Override
public void setText(CharSequence text, BufferType type) {
// TODO Auto-generated method stub
super.setText(waterMark, type);
}
private static final int DEFAULT_DEGREES = 0;
//
public static String waterMark = "";
private int mDegrees;
public RotateTextView(Context context) {
super(context, null);
}
public RotateTextView(Context context, AttributeSet attrs) {
super(context, attrs, android.R.attr.textViewStyle);
this.setGravity(Gravity.CENTER);
TypedArray a = context.obtainStyledAttributes(attrs,
R.styleable.RotateTextView);
mDegrees = a.getDimensionPixelSize(R.styleable.RotateTextView_degree,
DEFAULT_DEGREES);
a.recycle();
}
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
super.onMeasure(widthMeasureSpec, heightMeasureSpec);
setMeasuredDimension(getMeasuredWidth(), getMeasuredWidth());
}
@Override
protected void onDraw(Canvas canvas) {
canvas.save();
canvas.translate(getCompoundPaddingLeft(), getExtendedPaddingTop());
canvas.rotate(mDegrees, this.getWidth() / 2f, this.getHeight() / 2f);
super.onDraw(canvas);
canvas.restore();
}
public void setDegrees(int degrees) {
mDegrees = degrees;
}
}
Activity
@Override
protected void onStart() {
//
if(isAdd){
}else {
ViewGroup rootView = getRootView(this);
View framView = LayoutInflater.from(this).inflate(R.layout.fragment_layout, null);
rootView.addView(framView);
isAdd=true;
}
super.onStart();
}
//
protected static ViewGroup getRootView(Activity context)
{
return (ViewGroup)context.findViewById(android.R.id.content);
}