ActionBarタイトルにカスタムフォントを設定する方法


257

どのように(可能な場合)アセットフォルダのフォントを使用して、ActionBarタイトルテキスト(タブテキストではなく)にカスタムフォントを設定できますか?android:logoオプションを使用したくありません。

回答:


211

これは完全にはサポートされていないことに同意しますが、ここでは私が行ったことを説明します。アクションバーのカスタムビューを使用できます(アイコンとアクションアイテムの間に表示されます)。カスタムビューを使用していて、ネイティブタイトルを無効にしています。私のすべてのアクティビティは、onCreateに次のコードがある単一のアクティビティから継承します。

this.getActionBar().setDisplayShowCustomEnabled(true);
this.getActionBar().setDisplayShowTitleEnabled(false);

LayoutInflater inflator = LayoutInflater.from(this);
View v = inflator.inflate(R.layout.titleview, null);

//if you need to customize anything else about the text, do it here.
//I'm using a custom TextView with a custom font in my layout xml so all I need to do is set title
((TextView)v.findViewById(R.id.title)).setText(this.getTitle());

//assign the view to the actionbar
this.getActionBar().setCustomView(v);

そして、私のレイアウトxml(上のコードのR.layout.titleview)は次のようになります。

<?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"
    android:background="@android:color/transparent" >

<com.your.package.CustomTextView
        android:id="@+id/title"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerVertical="true"
            android:layout_marginLeft="10dp"
            android:textSize="20dp"
            android:maxLines="1"
            android:ellipsize="end"
            android:text="" />
</RelativeLayout>

1
これはタイトルに対しては正常に機能しますが、タイトルとタブが必要な場合は、カスタムビューをタブの右側に配置します。実際のタイトルを変更できるようになりたいです。
ドラクシア

2
素晴らしいソリューション。XMLでフォントを指定できるカスタムテキストビュークラスが必要な場合は、試してみてください。github.com/tom-dignan/nifty-とても簡単です。
トーマスディグナン

このコードはonCreate()にある必要がありますか?アクティビティの外で動的に設定する必要があります...
IgorGanapolsky

フォントを動的に変更する必要がありますか?または、フォントがすでにカスタマイズされているときにタイトルを変更するだけですか?
Sam Dozor

2
これは機能しますが、多くの作業を行う方法です。さらに、アイコンをクリックするとハイライト表示されるなど、標準タイトルの一部の機能が失われます...カスタムタイトルは、フォントを変更するためだけに標準タイトルレイアウトを再作成するために使用するものではありません...
Zordid

422

カスタムTypefaceSpanクラスを使用してこれを行うことができます。customViewアクションビューの展開など、他のアクションバー要素を使用しても中断しないため、上記のアプローチよりも優れています。

このようなクラスを使用すると、次のようになります。

SpannableString s = new SpannableString("My Title");
s.setSpan(new TypefaceSpan(this, "MyTypeface.otf"), 0, s.length(),
        Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);

// Update the action bar title with the TypefaceSpan instance
ActionBar actionBar = getActionBar();
actionBar.setTitle(s);

カスタムTypefaceSpanクラスには、アクティビティコンテキストとassets/fontsディレクトリ内の書体の名前が渡されます。ファイルをロードし、新しいTypefaceインスタンスをメモリにキャッシュします。の完全な実装TypefaceSpanは驚くほど簡単です:

/**
 * Style a {@link Spannable} with a custom {@link Typeface}.
 * 
 * @author Tristan Waddington
 */
public class TypefaceSpan extends MetricAffectingSpan {
      /** An <code>LruCache</code> for previously loaded typefaces. */
    private static LruCache<String, Typeface> sTypefaceCache =
            new LruCache<String, Typeface>(12);

    private Typeface mTypeface;

    /**
     * Load the {@link Typeface} and apply to a {@link Spannable}.
     */
    public TypefaceSpan(Context context, String typefaceName) {
        mTypeface = sTypefaceCache.get(typefaceName);

        if (mTypeface == null) {
            mTypeface = Typeface.createFromAsset(context.getApplicationContext()
                    .getAssets(), String.format("fonts/%s", typefaceName));

            // Cache the loaded Typeface
            sTypefaceCache.put(typefaceName, mTypeface);
        }
    }

    @Override
    public void updateMeasureState(TextPaint p) {
        p.setTypeface(mTypeface);

        // Note: This flag is required for proper typeface rendering
        p.setFlags(p.getFlags() | Paint.SUBPIXEL_TEXT_FLAG);
    }

    @Override
    public void updateDrawState(TextPaint tp) {
        tp.setTypeface(mTypeface);

        // Note: This flag is required for proper typeface rendering
        tp.setFlags(tp.getFlags() | Paint.SUBPIXEL_TEXT_FLAG);
    }
}

上記のクラスをプロジェクトにコピーし、上記のようにアクティビティのonCreateメソッドに実装するだけです。


20
素敵な答え。書体要素をキャッシュする方法も示したのは良いことです。
Anand Sainath 2013年

6
これは素晴らしいです。1つの落とし穴- textAllCaps属性が基になるTextViewでtrueに設定されている場合(たとえば、テーマを介して)、カスタムフォントは表示されません。アクションバーのタブ項目にこの手法を適用したとき、これは私にとって問題でした。
ジェームズ

4
このクラスの実装では、フォントファイルをに置くことを前提としていますassets/fonts/。.ttf / .otfファイルをサブフォルダーではなくアセットの下に単にスローする場合は、それに応じて次のコード行を変更する必要がありますString.format("fonts/%s", typefaceName)。私はそれを理解しようとするのに良い10分を失いました。そうしないと、次のようになりますjava.lang.RuntimeException: Unable to start activity ComponentInfo{com.your.pckage}: java.lang.RuntimeException: native typeface cannot be made
Dzhuneyt

1
アプリを起動した瞬間にデフォルトのタイトルスタイルが表示され、約1秒後にカスタムスタイルが表示されます。悪いUI ...
2013

2
これは素晴らしい答えであり、私を1トン助けました。私が追加する1つの改善点は、キャッシングメカニズムをTypefaceSpanの外の独自のクラスに移動することです。スパンのないタイプフェイスを使用していた他の状況に出くわしました。これにより、それらの状況でもキャッシュを利用できるようになりました。
ジャスティン

150
int titleId = getResources().getIdentifier("action_bar_title", "id",
            "android");
    TextView yourTextView = (TextView) findViewById(titleId);
    yourTextView.setTextColor(getResources().getColor(R.color.black));
    yourTextView.setTypeface(face);

2
これは、質問への好ましい答えです。「action_bar_subtitle」との相性も抜群です!ありがとう!
Zordid 2014

20
新しいバージョンのAndroid開発者がリソースIDを「action_bar_title」から他の名前に変更した場合、これは機能しません。そういうわけで、それはそれほど投票されませんでした。
Diogo Bento

6
appcompatのAPI> 3.0では機能しますが2.xでは機能しません
Aman Singhal

1
これにより、フォントとすべてが変更されます。しかし、次のアクティビティに移動して戻るボタンを押すと、フォントが元に戻ります。ActionBarプロパティと関係があると思います。
Pranav Mahajan

11
@Digit:「Holoテーマ」ではうまくいきましたが、「Materialテーマ」(android L)ではうまくいきませんでした。titleIdは見つかりましたが、textviewがnullです。これを修正する方法はありますか?ありがとう!
マイケルD.

34

AndroidのサポートライブラリのV26 + Androidのメーカー3.0以降、このプロセスはフリックように簡単になっています!!

ツールバーのタイトルのフォントを変更するには、次の手順に従います。

  1. ダウンロード可能なフォントを読み、リストから任意のフォントを選択するか(私の推奨)、またはカスタムフォントをロードしてres > font、XMLのフォントごとにます
  2. res > values > styles以下を貼り付けます(ここで想像力を働かせてください!

    <style name="TitleBarTextAppearance" parent="android:TextAppearance">
        <item name="android:fontFamily">@font/your_desired_font</item>
        <item name="android:textSize">23sp</item>
        <item name="android:textStyle">bold</item>
        <item name="android:textColor">@android:color/white</item>
    </style>
  3. app:titleTextAppearance="@style/TextAppearance.TabsFont"以下に示すように、ツールバーのプロパティに新しい行を挿入します

    <android.support.v7.widget.Toolbar
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        android:background="?attr/colorPrimary"
        app:titleTextAppearance="@style/TitleBarTextAppearance"
        app:popupTheme="@style/AppTheme.PopupOverlay"/>
  4. カスタムアクションバータイトルのフォントスタイルをお楽しみください!!


2
これはツールバーに最適です。新しいアクティビティにデフォルトのアプリバーがある場合など、アプリ全体でこれを行う方法はありますか?
ジョーダンH

14

書道ライブラリletがあなたにもアクションバーに適用されるアプリのテーマを通じて、カスタムフォントを設定します。

<style name="AppTheme" parent="android:Theme.Holo.Light.DarkActionBar">
<item name="android:textViewStyle">@style/AppTheme.Widget.TextView</item>
</style>

<style name="AppTheme.Widget"/>

<style name="AppTheme.Widget.TextView" parent="android:Widget.Holo.Light.TextView">
   <item name="fontPath">fonts/Roboto-ThinItalic.ttf</item>
</style>

書道をアクティブにするために必要なのは、それをアクティビティコンテキストにアタッチすることだけです。

@Override
protected void attachBaseContext(Context newBase) {
    super.attachBaseContext(new CalligraphyContextWrapper(newBase));
}

デフォルトのカスタム属性はですがfontPath、を使用してアプリケーションクラスで初期化することにより、パスに独自のカスタム属性を指定できますCalligraphyConfig.Builder。の使用はandroid:fontFamily推奨されていません。


このソリューションの最小API 16
Sami Eltamawy 2014年

プロジェクトのビルドファイルによるとminSdk 7ですが、これをminSdk 18プロジェクトで使用しており、それ以上のチェックは行いませんでした。使用されている問題の方法は何ですか?
thoutbeckers 2014年

その最小API 7、ちょうど例はAPI16です。appcompat-v7 +をサポート
Chris.Jenkins 2014年

11

これは醜いハックですが、次のように行うことができます(action_bar_titleが非表示であるため)。

    try {
        Integer titleId = (Integer) Class.forName("com.android.internal.R$id")
                .getField("action_bar_title").get(null);
        TextView title = (TextView) getWindow().findViewById(titleId);
        // check for null and manipulate the title as see fit
    } catch (Exception e) {
        Log.e(TAG, "Failed to obtain action bar title reference");
    }

このコードはGINGERBREAD後のデバイス用ですが、アクションバーのシャーロックでも機能するように簡単に拡張できます。

PS @pjvコメントに基づいて、アクションバーのタイトルIDを見つけるより良い方法があります

final int titleId = 
    Resources.getSystem().getIdentifier("action_bar_title", "id", "android");

4
私はstackoverflow.com/questions/10779037/…で dtmilanoの回答を好みます。それは似ていますが、少しだけ将来の証明になります。
pjv 2013年

1
@pjv-同意。「ハック」が少ないようです。私は私の答えを変更しました
Bostone 2013年

1
だから問題はカスタムフォントについてです。これは、デフォルトのアクションバーのテキストビューを取得する方法に答えます
AlikElzin-kilaka 2013

@kilaka-テキストビューの設定を取得した場合、カスタムフォントは取るに足らないものになるという考えでした。私は答えはあまり好まれtwaddingtonだと思う、が、これは古い記事です
Bostone

8

次のコードはすべてのバージョンで機能します。私はジンジャーブレッドを備えたデバイスとJellyBeanデバイスでこれをチェックしました

 private void actionBarIdForAll()
    {
        int titleId = 0;

        if(Build.VERSION.SDK_INT>=Build.VERSION_CODES.HONEYCOMB)
        {
            titleId = getResources().getIdentifier("action_bar_title", "id", "android");
        }
        else
        {
          // This is the id is from your app's generated R class when ActionBarActivity is used for SupportActionBar

            titleId = R.id.action_bar_title;
        }

        if(titleId>0)
        {
            // Do whatever you want ? It will work for all the versions.

            // 1. Customize your fonts
            // 2. Infact, customize your whole title TextView

            TextView titleView = (TextView)findViewById(titleId);
            titleView.setText("RedoApp");
            titleView.setTextColor(Color.CYAN);
        }
    }

これは、ActionBarとAppCompat ActionBarの両方で機能します。しかし、後者は、onCreate()の後にタイトルビューを見つけようとした場合にのみ機能するため、たとえば、onPostCreate()に配置するとうまくいきます。
Harri

8

サポートライブラリの新しいツールバーを使用して、アクションバーを独自のものとして設計するか、以下のコードを使用してください

Textviewを膨らませることは良いオプションではありませんSpannable String builderを試してください

Typeface font2 = Typeface.createFromAsset(getAssets(), "fonts/<your font in assets folder>");   
SpannableStringBuilder SS = new SpannableStringBuilder("MY Actionbar Tittle");
SS.setSpan (new CustomTypefaceSpan("", font2), 0, SS.length(),Spanned.SPAN_EXCLUSIVE_INCLUSIVE);
actionBar.setTitle(ss);

クラスの下にコピー

public class CustomTypefaceSpan extends TypefaceSpan{

    private final Typeface newType;

    public CustomTypefaceSpan(String family, Typeface type) {
        super(family);
        newType = type;
    }

    @Override
    public void updateDrawState(TextPaint ds) {
        applyCustomTypeFace(ds, newType);
    }

    @Override
    public void updateMeasureState(TextPaint paint) {
        applyCustomTypeFace(paint, newType);
    }

    private static void applyCustomTypeFace(Paint paint, Typeface tf) {
        int oldStyle;
        Typeface old = paint.getTypeface();
        if (old == null) {
            oldStyle = 0;
        } else {
            oldStyle = old.getStyle();
        }

        int fake = oldStyle & ~tf.getStyle();
        if ((fake & Typeface.BOLD) != 0) {
            paint.setFakeBoldText(true);
        }

        if ((fake & Typeface.ITALIC) != 0) {
            paint.setTextSkewX(-0.25f);
        }

        paint.setTypeface(tf);
    }

}

7
    ActionBar actionBar = getSupportActionBar();
    TextView tv = new TextView(getApplicationContext());
    Typeface typeface = ResourcesCompat.getFont(this, R.font.monotype_corsiva);
    RelativeLayout.LayoutParams lp = new RelativeLayout.LayoutParams(
            RelativeLayout.LayoutParams.MATCH_PARENT, // Width of TextView
            RelativeLayout.LayoutParams.WRAP_CONTENT); // Height of TextView
    tv.setLayoutParams(lp);
    tv.setText("Your Text"); // ActionBar title text
    tv.setTextSize(25);
    tv.setTextColor(Color.WHITE);
    tv.setTypeface(typeface, typeface.ITALIC);
    actionBar.setDisplayOptions(ActionBar.DISPLAY_SHOW_CUSTOM);
    actionBar.setCustomView(tv);

グレートこれは完璧に働いている私は、中心にこのアプリバーを取得できますか?
Prasath

...魔法のように働くことは、単に置き換えるtypeface.ITALICTypeface.ITALIC静的なメンバーの警告がないために
ザイン

3

アクティビティ全体のすべてのTextViewに書体を設定する場合は、次のようなものを使用できます。

public static void setTypefaceToAll(Activity activity)
{
    View view = activity.findViewById(android.R.id.content).getRootView();
    setTypefaceToAll(view);
}

public static void setTypefaceToAll(View view)
{
    if (view instanceof ViewGroup)
    {
        ViewGroup g = (ViewGroup) view;
        int count = g.getChildCount();
        for (int i = 0; i < count; i++)
            setTypefaceToAll(g.getChildAt(i));
    }
    else if (view instanceof TextView)
    {
        TextView tv = (TextView) view;
        setTypeface(tv);
    }
}

public static void setTypeface(TextView tv)
{
    TypefaceCache.setFont(tv, TypefaceCache.FONT_KOODAK);
}

そして、TypefaceCache:

import java.util.TreeMap;

import android.graphics.Typeface;
import android.widget.TextView;

public class TypefaceCache {

    //Font names from asset:
    public static final String FONT_ROBOTO_REGULAR = "fonts/Roboto-Regular.ttf";
    public static final String FONT_KOODAK = "fonts/Koodak.ttf";

    private static TreeMap<String, Typeface> fontCache = new TreeMap<String, Typeface>();

    public static Typeface getFont(String fontName) {
        Typeface tf = fontCache.get(fontName);
        if(tf == null) {
            try {
                tf = Typeface.createFromAsset(MyApplication.getAppContext().getAssets(), fontName);
            }
            catch (Exception e) {
                return null;
            }
            fontCache.put(fontName, tf);
        }
        return tf;
    }

    public static void setFont(TextView tv, String fontName)
    {
        tv.setTypeface(getFont(fontName));
    }
}

3

onCreate()関数内で次のことを実行しました。

TypefaceSpan typefaceSpan = new TypefaceSpan("font_to_be_used");
SpannableString str = new SpannableString("toolbar_text");
str.setSpan(typefaceSpan,0, str.length(), Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
getSupportActionBar().setTitle(str);

私はサポートライブラリを使用していますが、使用していない場合は、getSupportActionBar()ではなくgetActionBar()に切り替える必要があると思います。

Android Studio 3 では、https://developer.android.com/guide/topics/ui/look-and-feel/fonts-in-xml.htmlの手順に従ってカスタムフォントを追加し、新しく追加されたフォントを「 font_to_be_used」


1

@Sam_Dの答えに追加するには、これを機能させるためにこれを行う必要がありました:

this.setTitle("my title!");
((TextView)v.findViewById(R.id.title)).setText(this.getTitle());
TextView title = ((TextView)v.findViewById(R.id.title));
title.setEllipsize(TextUtils.TruncateAt.MARQUEE);
title.setMarqueeRepeatLimit(1);
// in order to start strolling, it has to be focusable and focused
title.setFocusable(true);
title.setSingleLine(true);
title.setFocusableInTouchMode(true);
title.requestFocus();

やり過ぎのようです-v.findViewById(R.id.title))を 2回参照していますが、それが唯一の方法です。


1

正解を更新します。

最初に、カスタムビューを使用しているため、タイトルをfalseに設定します。

    actionBar.setDisplayShowTitleEnabled(false);

次に、titleview.xmlを作成します

<?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"
   android:background="@android:color/transparent" >

    <TextView
       android:id="@+id/title"
       android:layout_width="wrap_content"
       android:layout_height="wrap_content"
       android:layout_centerVertical="true"
       android:layout_marginLeft="10dp"
       android:textSize="20dp"
       android:maxLines="1"
       android:ellipsize="end"
       android:text="" />

</RelativeLayout>

最後に:

//font file must be in the phone db so you have to create download file code
//check the code on the bottom part of the download file code.

   TypeFace font = Typeface.createFromFile("/storage/emulated/0/Android/data/"   
    + BuildConfig.APPLICATION_ID + "/files/" + "font name" + ".ttf");

    if(font != null) {
        LayoutInflater inflator = LayoutInflater.from(this);
        View v = inflator.inflate(R.layout.titleview, null);
        TextView titleTv = ((TextView) v.findViewById(R.id.title));
        titleTv.setText(title);
        titleTv.setTypeface(font);
        actionBar.setCustomView(v);
    } else {
        actionBar.setDisplayShowTitleEnabled(true);
        actionBar.setTitle("  " + title); // Need to add a title
    }

FONT FILEをダウンロード:ファイルをcloudinaryに保存しているので、ダウンロードするためのリンクがあります。

/**downloadFile*/
public void downloadFile(){
    String DownloadUrl = //url here
    File file = new File("/storage/emulated/0/Android/data/" + BuildConfig.APPLICATION_ID + "/files/");
    File[] list = file.listFiles();
    if(list == null || list.length <= 0) {
        BroadcastReceiver onComplete = new BroadcastReceiver() {
            @Override
            public void onReceive(Context context, Intent intent) {
                try{
                    showContentFragment(false);
                } catch (Exception e){
                }
            }
        };

        registerReceiver(onComplete, new IntentFilter(DownloadManager.ACTION_DOWNLOAD_COMPLETE));
        DownloadManager.Request request = new DownloadManager.Request(Uri.parse(DownloadUrl));
        request.setVisibleInDownloadsUi(false);
        request.setDestinationInExternalFilesDir(this, null, ModelManager.getInstance().getCurrentApp().getRegular_font_name() + ".ttf");
        DownloadManager manager = (DownloadManager) getSystemService(Context.DOWNLOAD_SERVICE);
        manager.enqueue(request);
    } else {
        for (File files : list) {
            if (!files.getName().equals("font_name" + ".ttf")) {
                BroadcastReceiver onComplete = new BroadcastReceiver() {
                    @Override
                    public void onReceive(Context context, Intent intent) {
                        try{
                            showContentFragment(false);
                        } catch (Exception e){
                        }
                    }
                };

                registerReceiver(onComplete, new IntentFilter(DownloadManager.ACTION_DOWNLOAD_COMPLETE));
                DownloadManager.Request request = new DownloadManager.Request(Uri.parse(DownloadUrl));
                request.setVisibleInDownloadsUi(false);
                request.setDestinationInExternalFilesDir(this, null, "font_name" + ".ttf");
                DownloadManager manager = (DownloadManager) getSystemService(Context.DOWNLOAD_SERVICE);
                manager.enqueue(request);
            } else {
                showContentFragment(false);
                break;
            }
        }
    }
}

1

カスタムテキストビューは必要ありません。

まず、Javaコードのtoobarでタイトルを無効にします。getSupportActionBar()。setDisplayShowTitleEnabled(false);

次に、ツールバー内にTextViewを追加します。

<android.support.v7.widget.Toolbar
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="?attr/colorPrimary"
    app:popupTheme="@style/AppTheme.PopupOverlay">

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/app_name"
        android:textSize="18sp"
        android:fontFamily="@font/roboto" />

    </android.support.v7.widget.Toolbar>

これは最新のナビゲーションUIジェットパックライブラリでは機能しません
Ali Asheer

1

これを使ってみてください

TextView headerText= new TextView(getApplicationContext());
RelativeLayout.LayoutParams lp = new RelativeLayout.LayoutParams(ActionBar.LayoutParams.WRAP_CONTENT, ActionBar.LayoutParams.WRAP_CONTENT);
headerText.setLayoutParams(lp);
headerText.setText("Welcome!");
headerText.setTextSize(20);
headerText.setTextColor(Color.parseColor("#FFFFFF"));
Typeface tf = Typeface.createFromAsset(getAssets(), "fonts/wesfy_regular.ttf");
headerText.setTypeface(tf);
getSupportActionBar().setDisplayOptions(ActionBar.DISPLAY_SHOW_CUSTOM);
getSupportActionBar().setCustomView(headerText);

0

これを達成するには反射を使用する必要があります

final int titleId = activity.getResources().getIdentifier("action_bar_title", "id", "android");

    final TextView title;
    if (activity.findViewById(titleId) != null) {
        title = (TextView) activity.findViewById(titleId);
        title.setTextColor(Color.BLACK);
        title.setTextColor(configs().getColor(ColorKey.GENERAL_TEXT));
        title.setTypeface(configs().getTypeface());
    } else {
        try {
            Field f = bar.getClass().getDeclaredField("mTitleTextView");
            f.setAccessible(true);
            title = (TextView) f.get(bar);
            title.setTextColor(Color.BLACK);
            title.setTypeface(configs().getTypeface());
        } catch (NoSuchFieldException e) {
        } catch (IllegalAccessException e) {
        }
    }

-1

これを試して

public void findAndSetFont(){
        getActionBar().setTitle("SOME TEST TEXT");
        scanForTextViewWithText(this,"SOME TEST TEXT",new SearchTextViewInterface(){

            @Override
            public void found(TextView title) {

            } 
        });
    }

public static void scanForTextViewWithText(Activity activity,String searchText, SearchTextViewInterface searchTextViewInterface){
    if(activity == null|| searchText == null || searchTextViewInterface == null)
        return;
    View view = activity.findViewById(android.R.id.content).getRootView();
    searchForTextViewWithTitle(view, searchText, searchTextViewInterface);
}

private static void searchForTextViewWithTitle(View view, String searchText, SearchTextViewInterface searchTextViewInterface)
{
    if (view instanceof ViewGroup)
    {
        ViewGroup g = (ViewGroup) view;
        int count = g.getChildCount();
        for (int i = 0; i < count; i++)
            searchForTextViewWithTitle(g.getChildAt(i), searchText, searchTextViewInterface);
    }
    else if (view instanceof TextView)
    {
        TextView textView = (TextView) view;
        if(textView.getText().toString().equals(searchText))
            if(searchTextViewInterface!=null)
                searchTextViewInterface.found(textView);
    }
}
public interface SearchTextViewInterface {
    void found(TextView title);
}
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.