第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定

不顯示文字

//....

public class TopBar extends RelativeLayout {

private Button leftButton, rightButton;

private TextView tvTitle;


private int leftTextColor;

private Drawable leftBackground;

private String leftText;


private int rightTextColor;

private Drawable rightBackground;

private String rightText;


private float titleTextSize;

private int titleTextColor;

private String title;

private LayoutParams leftpParams,rightpParams,titlepParams;


public TopBar(Context context, AttributeSet attrs) {

super(context, attrs);

TypedArray ta = context.obtainStyledAttributes(attrs,

R.styleable.TopBar);


leftTextColor = ta.getColor(R.styleable.TopBar_leftTextColor, 0);

leftBackground = ta.getDrawable(R.styleable.TopBar_leftBackGround);

leftText = ta.getString(R.styleable.TopBar_leftText);


rightTextColor = ta.getColor(R.styleable.TopBar_rightTextColor, 0);

rightBackground = ta.getDrawable(R.styleable.TopBar_rightBackGround);

rightText = ta.getString(R.styleable.TopBar_rightText);


titleTextSize = ta.getDimension(R.styleable.TopBar_titleTextSize, 0);

titleTextColor = ta.getColor(R.styleable.TopBar_titleTextColor, 0);

title = ta.getString(R.styleable.TopBar_title);


ta.recycle();// 避免浪費(fèi)資源,緩存引起的錯(cuò)誤


// 1.獲取自定義屬性


leftButton = new Button(context);

rightButton = new Button(context);

tvTitle = new TextView(context);


// 2.創(chuàng)建控件


leftButton.setTextColor(leftTextColor);

leftButton.setBackground(leftBackground);

leftButton.setText(leftText);


rightButton.setTextColor(rightTextColor);

rightButton.setBackground(rightBackground);

rightButton.setText(rightText);


tvTitle.setTextColor(titleTextColor);

tvTitle.setTextSize(titleTextSize);

tvTitle.setText(title);

tvTitle.setGravity(Gravity.CENTER);


setBackgroundColor(0xfff59563);

leftpParams = new LayoutParams(ViewGroup.LayoutParams.WRAP_CONTENT,LayoutParams.WRAP_CONTENT);

leftpParams.addRule(RelativeLayout.ALIGN_PARENT_LEFT,TRUE);

addView(leftButton, leftpParams);

rightpParams = new LayoutParams(ViewGroup.LayoutParams.WRAP_CONTENT,LayoutParams.WRAP_CONTENT);

rightpParams.addRule(RelativeLayout.ALIGN_PARENT_RIGHT,TRUE);

addView(rightButton, rightpParams);

titlepParams = new LayoutParams(ViewGroup.LayoutParams.WRAP_CONTENT,LayoutParams.MATCH_PARENT);

titlepParams.addRule(RelativeLayout.CENTER_IN_PARENT,TRUE);

addView(tvTitle, titlepParams);


}

}

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"

? ? xmlns:tools="http://schemas.android.com/tools"

? ? xmlns:app="http://schemas.android.com/apk/res/com.example.topbar.TopBar"

? ? android:layout_width="match_parent"

? ? android:layout_height="match_parent"

? ? tools:context=".MainActivity" >


? ? <com.example.topbar.TopBar

? ? ? ? android:layout_width="wrap_content"

? ? ? ? android:layout_height="40dp"

? ? ? ? app:leftText="left"

? ? ? ? app:rightText="right"

? ? ? ? app:title="自定義標(biāo)題" >

? ? </com.example.topbar.TopBar>

</RelativeLayout>

atts代碼:

<?xml version="1.0" encoding="utf-8"?>

<resources>


? ? <declare-styleable name="TopBar">

? ? ? ? <attr name="title" format="string" />

? ? ? ? <attr name="titleTextSize" format="dimension" />

? ? ? ? <attr name="titleTextColor" format="color" />

? ? ? ? <attr name="leftText" format="string" />

? ? ? ? <attr name="leftBackGround" format="reference|color" />

? ? ? ? <attr name="leftTextColor" format="color" />

? ? ? ? <attr name="rightText" format="string" />

? ? ? ? <attr name="rightBackGround" format="reference|color" />

? ? ? ? <attr name="rightTextColor" format="color" />

? ? </declare-styleable>


</resources>


正在回答

5 回答

哥們,問(wèn)題決解了嗎,我倒騰了好久,還是不行。

0 回復(fù) 有任何疑惑可以回復(fù)我~
xmlns:app="http://schemas.android.com/apk/res/com.example.topbar.TopBar"

改成下面試試 :

xmlns:app="http://schemas.android.com/apk/res-auto"


0 回復(fù) 有任何疑惑可以回復(fù)我~

感覺(jué)你沒(méi)有設(shè)置布局方向 ?系統(tǒng)默認(rèn)的是設(shè)置的是橫向布局

0 回復(fù) 有任何疑惑可以回復(fù)我~
#1

qq_陽(yáng)光下的躺椅 提問(wèn)者

和布局方向沒(méi)關(guān)系吧,就算是和布局方向有關(guān),也應(yīng)該顯示,只是顯示有問(wèn)題而已。
2016-03-30 回復(fù) 有任何疑惑可以回復(fù)我~

上面只是補(bǔ)充的代碼,剛開(kāi)始沒(méi)發(fā)現(xiàn)可以修改問(wèn)題。抱歉。

0 回復(fù) 有任何疑惑可以回復(fù)我~

atts代碼:

<?xml version="1.0" encoding="utf-8"?>

<resources>


? ? <declare-styleable name="TopBar">

? ? ? ? <attr name="title" format="string" />

? ? ? ? <attr name="titleTextSize" format="dimension" />

? ? ? ? <attr name="titleTextColor" format="color" />

? ? ? ? <attr name="leftText" format="string" />

? ? ? ? <attr name="leftBackGround" format="reference|color" />

? ? ? ? <attr name="leftTextColor" format="color" />

? ? ? ? <attr name="rightText" format="string" />

? ? ? ? <attr name="rightBackGround" format="reference|color" />

? ? ? ? <attr name="rightTextColor" format="color" />

? ? </declare-styleable>


</resources>


0 回復(fù) 有任何疑惑可以回復(fù)我~

舉報(bào)

0/150
提交
取消
Android UI模板設(shè)計(jì)
  • 參與學(xué)習(xí)       76030    人
  • 解答問(wèn)題       233    個(gè)

快來(lái)學(xué)習(xí)如何在Android中自定義View,本次課程一定會(huì)讓你獲益匪淺

進(jìn)入課程
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)