You've already forked Magisk
mirror of
https://github.com/topjohnwu/Magisk.git
synced 2025-09-06 06:36:58 +00:00
81 lines
2.4 KiB
Java
81 lines
2.4 KiB
Java
/*
|
|
* Copyright 2016 dvdandroid
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
package com.topjohnwu.magisk.components;
|
|
|
|
import android.content.Context;
|
|
import android.content.res.TypedArray;
|
|
import android.graphics.drawable.Drawable;
|
|
import android.util.AttributeSet;
|
|
import android.view.LayoutInflater;
|
|
import android.view.View;
|
|
import android.widget.ImageView;
|
|
import android.widget.LinearLayout;
|
|
import android.widget.TextView;
|
|
|
|
import com.topjohnwu.magisk.R;
|
|
|
|
import butterknife.BindView;
|
|
import butterknife.ButterKnife;
|
|
|
|
/**
|
|
* @author dvdandroid
|
|
*/
|
|
public class AboutCardRow extends LinearLayout {
|
|
|
|
@BindView(android.R.id.title) TextView mTitle;
|
|
@BindView(android.R.id.summary) TextView mSummary;
|
|
@BindView(android.R.id.icon) ImageView mIcon;
|
|
@BindView(R.id.container) View mView;
|
|
|
|
public AboutCardRow(Context context) {
|
|
this(context, null);
|
|
}
|
|
|
|
public AboutCardRow(Context context, AttributeSet attrs) {
|
|
this(context, attrs, 0);
|
|
}
|
|
|
|
public AboutCardRow(Context context, AttributeSet attrs, int defStyleAttr) {
|
|
super(context, attrs, defStyleAttr);
|
|
LayoutInflater.from(context).inflate(R.layout.info_item_row, this);
|
|
ButterKnife.bind(this, this);
|
|
|
|
TypedArray a = context.getTheme().obtainStyledAttributes(attrs, R.styleable.AboutCardRow, 0, 0);
|
|
String title;
|
|
Drawable icon;
|
|
try {
|
|
title = a.getString(R.styleable.AboutCardRow_text);
|
|
icon = a.getDrawable(R.styleable.AboutCardRow_icon);
|
|
} finally {
|
|
a.recycle();
|
|
}
|
|
mTitle.setText(title);
|
|
mIcon.setImageDrawable(icon);
|
|
}
|
|
|
|
@Override
|
|
public void setOnClickListener(OnClickListener l) {
|
|
super.setOnClickListener(l);
|
|
|
|
mView.setOnClickListener(l);
|
|
}
|
|
|
|
public void setSummary(String s) {
|
|
mSummary.setVisibility(VISIBLE);
|
|
mSummary.setText(s);
|
|
}
|
|
} |