mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 22:25:30 +00:00
df09d6193c
--HG-- extra : rebase_source : 12a6f764e08608ceb2bcbe64733fc61750e5fc34
113 lines
3.5 KiB
Java
113 lines
3.5 KiB
Java
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
* You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
package org.mozilla.gecko;
|
|
|
|
import android.content.Context;
|
|
import android.content.res.TypedArray;
|
|
import android.text.TextUtils;
|
|
import android.util.AttributeSet;
|
|
import android.view.LayoutInflater;
|
|
import android.view.View;
|
|
import android.widget.LinearLayout;
|
|
import android.widget.TextView;
|
|
|
|
public class AboutHomeSection extends GeckoLinearLayout {
|
|
private static final String LOGTAG = "GeckoAboutHomeSection";
|
|
|
|
private TextView mTitle;
|
|
private TextView mSubtitle;
|
|
private LinearLayout mItemsContainer;
|
|
private LinkTextView mMoreText;
|
|
|
|
public AboutHomeSection(Context context, AttributeSet attrs) {
|
|
super(context, attrs);
|
|
|
|
setOrientation(VERTICAL);
|
|
|
|
LayoutInflater.from(context).inflate(R.layout.abouthome_section, this);
|
|
|
|
mTitle = (TextView) this.findViewById(R.id.title);
|
|
mSubtitle = (TextView) this.findViewById(R.id.subtitle);
|
|
mItemsContainer = (LinearLayout) this.findViewById(R.id.items_container);
|
|
mMoreText = (LinkTextView) this.findViewById(R.id.more_text);
|
|
|
|
TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.AboutHomeSection);
|
|
setTitle(a.getText(R.styleable.AboutHomeSection_title));
|
|
setSubtitle(a.getText(R.styleable.AboutHomeSection_subtitle));
|
|
setMoreText(a.getText(R.styleable.AboutHomeSection_more_text));
|
|
a.recycle();
|
|
}
|
|
|
|
public LinearLayout getItemsContainer() {
|
|
return mItemsContainer;
|
|
}
|
|
|
|
public void setTitle(CharSequence title) {
|
|
if (!TextUtils.isEmpty(title)) {
|
|
mTitle.setText(title);
|
|
mTitle.setVisibility(View.VISIBLE);
|
|
} else {
|
|
mTitle.setVisibility(View.GONE);
|
|
}
|
|
}
|
|
|
|
public void setSubtitle(CharSequence subtitle) {
|
|
if (!TextUtils.isEmpty(subtitle)) {
|
|
mSubtitle.setText(subtitle);
|
|
mSubtitle.setVisibility(View.VISIBLE);
|
|
} else {
|
|
mSubtitle.setVisibility(View.GONE);
|
|
}
|
|
}
|
|
|
|
public void setMoreText(CharSequence moreText) {
|
|
if (!TextUtils.isEmpty(moreText)) {
|
|
mMoreText.setText(moreText);
|
|
mMoreText.setVisibility(View.VISIBLE);
|
|
} else {
|
|
mMoreText.setVisibility(View.GONE);
|
|
}
|
|
}
|
|
|
|
public void setOnMoreTextClickListener(View.OnClickListener listener) {
|
|
mMoreText.setOnClickListener(listener);
|
|
}
|
|
|
|
public void addItem(View item) {
|
|
mItemsContainer.addView(item);
|
|
mItemsContainer.addView(new Divider(getContext(), null));
|
|
}
|
|
|
|
public void clear() {
|
|
mItemsContainer.removeAllViews();
|
|
}
|
|
|
|
public void show() {
|
|
setVisibility(View.VISIBLE);
|
|
}
|
|
|
|
public void hide() {
|
|
setVisibility(View.GONE);
|
|
}
|
|
|
|
public void showMoreText() {
|
|
mMoreText.setVisibility(View.VISIBLE);
|
|
}
|
|
|
|
public void hideMoreText() {
|
|
mMoreText.setVisibility(View.GONE);
|
|
}
|
|
|
|
private class Divider extends View {
|
|
public Divider(Context context, AttributeSet attrs) {
|
|
super(context, attrs);
|
|
|
|
setLayoutParams(new LinearLayout.LayoutParams(LinearLayout.LayoutParams.FILL_PARENT,
|
|
(int) context.getResources().getDisplayMetrics().density));
|
|
setBackgroundColor(0x3460666E);
|
|
}
|
|
}
|
|
}
|