FileDocCategorySizeDatePackage
TitleBar.javaAPI DocAndroid 5.1 API1498Thu Mar 12 22:22:44 GMT 2015com.android.layoutlib.bridge.bars

TitleBar

public class TitleBar extends CustomBar

Fields Summary
private android.widget.TextView
mTextView
Constructors Summary
public TitleBar(android.content.Context context, String label, int simulatedPlatformVersion)

        super(context, LinearLayout.HORIZONTAL, "/bars/title_bar.xml", "title_bar.xml",
                simulatedPlatformVersion);

        // Cannot access the inside items through id because no R.id values have been
        // created for them.
        // We do know the order though.
        mTextView = setText(0, label, true);

        setStyle("windowTitleBackgroundStyle");
    
Methods Summary
protected android.widget.TextViewgetStyleableTextView()

        return mTextView;