Android開發(fā)-TextView扮匠,Button,EditText

TextView

  • 文字大小凡涩、顏色
  • 顯示不下使用...
  • 文字加+icon
  • 下劃線棒搜、刪除線
  • 跑馬燈

效果圖

TextView效果圖

代碼

activity_text_view.xml 文件

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:padding="20dp">

    <TextView
        android:id="@+id/tv_1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/tv_test1"
        android:textColor="#000000"
        android:textSize="24sp"
        />

    <TextView
        android:id="@+id/tv_2"
        android:layout_width="100dp"
        android:layout_height="wrap_content"
        android:text="@string/tv_test1"
        android:textColor="#000000"
        android:textSize="24sp"
        android:maxLines="1"
        android:ellipsize="end"
        android:layout_marginTop="10dp"
        />

    <TextView
        android:id="@+id/tv_3"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="篩選"
        android:textColor="#000000"
        android:textSize="24sp"
        android:layout_marginTop="10dp"
        android:drawableRight="@drawable/arrowdown"
        android:drawablePadding="8dp"
        />

    <TextView
        android:id="@+id/tv_4"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/tv_test1"
        android:textColor="#000000"
        android:textSize="24sp"
        />

    <TextView
        android:id="@+id/tv_5"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/tv_test1"
        android:textColor="#000000"
        android:textSize="24sp"
        />

    <TextView
        android:id="@+id/tv_6"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textColor="#000000"
        android:textSize="24sp"
        />

    <TextView
        android:id="@+id/tv_7"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textColor="#000000"
        android:text="asdfsdf asdlfjlasjdf asdlfasld asdfj sdlfjlsajd fasdfj asdfsdf f"
        android:textSize="24sp"
        android:ellipsize="marquee"
        android:singleLine="true"
        android:marqueeRepeatLimit="marquee_forever"
        android:focusable="true"
        android:focusableInTouchMode="true"
        />
</LinearLayout>

TextViewActivity文件

private TextView mTv4,mTv5,mTv6;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_text_view);

        mTv4 = findViewById(R.id.tv_4);
        mTv4.getPaint().setFlags(Paint.STRIKE_THRU_TEXT_FLAG);// 中劃線
        mTv4.getPaint().setAntiAlias(true); // 去除鋸齒

        mTv5 = findViewById(R.id.tv_5);
        mTv5.getPaint().setFlags(Paint.UNDERLINE_TEXT_FLAG);// 中劃線
        mTv5.getPaint().setAntiAlias(true); // 去除鋸齒


        mTv6 = findViewById(R.id.tv_6);
        mTv6.setText(Html.fromHtml("<u>天哥在奔跑</u>"));
    }

Button

  • 文字大小顏色
  • 背景形狀
  • 按壓效果
  • 點(diǎn)擊事件

效果圖

Button效果圖

代碼

布局

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:padding="10dp">

    <Button
        android:id="@+id/btn_1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="按鈕1"
        android:textSize="20sp"
        android:textColor="#F44336"
        android:background="#CDDC39"
        />

    <Button
        android:id="@+id/btn_2"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="按鈕2"
        android:textSize="20sp"
        android:textColor="#F44336"
        android:background="@drawable/bg_btn2"
        android:layout_below="@id/btn_1"
        android:layout_marginTop="20dp"
        />

    <Button
        android:id="@+id/btn_3"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="按鈕3"
        android:textSize="20sp"
        android:textColor="#F44336"
        android:background="@drawable/bg_btn3"
        android:layout_below="@id/btn_2"
        android:layout_marginTop="20dp"
        />

    <Button
        android:id="@+id/btn_4"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="按鈕4"
        android:textSize="20sp"
        android:textColor="#F44336"
        android:background="@drawable/bg_btn4"
        android:layout_below="@id/btn_3"
        android:layout_marginTop="20dp"
        android:onClick="showToast"
        />

    <TextView
        android:id="@+id/tv_1"
        android:layout_width="match_parent"
        android:layout_height="50dp"
        android:layout_below="@id/btn_4"
        android:layout_marginTop="20dp"
        android:textColor="#000"
        android:text="文字1"
        android:textSize="22sp"
        android:background="#FFA"
        android:gravity="center"
        />

</RelativeLayout>

背景效果

<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle">

    <solid
        android:color="#FFC107"/>
    <corners
        android:radius="10dp"/>

</shape>

<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle">

    <stroke
        android:width="1dp"
        android:color="#FFC107"
        />
    <corners
        android:radius="10dp"/>

</shape>

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

    <item android:state_pressed="true">
        <shape>
            <solid android:color="#9C640B"/>
            <corners android:radius="5dp"/>
        </shape>
    </item>

    <item android:state_pressed="false">
        <shape>
            <solid android:color="#FF9900"/>
            <corners android:radius="5dp"/>
        </shape>
    </item>

</selector>

ButtonActivity

public class ButtonActivity extends AppCompatActivity {

    private Button btn3;
    private TextView tV1;

    @SuppressLint("WrongViewCast")
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_button);

        btn3 = findViewById(R.id.btn_3);
        btn3.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                Toast.makeText(ButtonActivity.this,"btn3被點(diǎn)擊了",Toast.LENGTH_SHORT).show();
            }
        });

        tV1 = findViewById(R.id.tv_1);
        tV1.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                Toast.makeText(ButtonActivity.this,"view1被點(diǎn)擊了",Toast.LENGTH_SHORT).show();
            }
        });
    }

    public void showToast(View view) {
        Toast.makeText(this,"btn4被點(diǎn)擊了",Toast.LENGTH_SHORT).show();
    }
}

EditText

  • 常用屬性
  • 監(jiān)聽事件
  • 制作登錄頁面

效果圖

登錄界面

代碼

activity_edit_text.xml

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:padding="16dp">

    <EditText
        android:id="@+id/et_1"
        android:layout_width="match_parent"
        android:layout_height="50dp"
        android:textSize="16dp"
        android:textColor="#FFC107"
        android:hint="用戶名"
        android:background="@drawable/bg_username"
        android:paddingLeft="8dp"
        android:paddingRight="8dp"
        android:drawableLeft="@drawable/user"
        android:drawablePadding="5dp"
        android:maxLines="1"
        />
    <!--android:inputType="number"-->

    <EditText
        android:id="@+id/et_2"
        android:layout_width="match_parent"
        android:layout_height="50dp"
        android:textSize="16dp"
        android:textColor="#FFC107"
        android:hint="密碼"
        android:layout_below="@id/et_1"
        android:inputType="textPassword"
        android:background="@drawable/bg_username"
        android:layout_marginTop="20dp"
        android:paddingLeft="8dp"
        android:paddingRight="8dp"
        android:drawableLeft="@drawable/password"
        android:drawablePadding="5dp"
        android:maxLines="1"
        />

    <Button
        android:id="@+id/btn_login"
        android:layout_width="match_parent"
        android:layout_height="40dp"
        android:layout_below="@id/et_2"
        android:layout_marginTop="40dp"
        android:background="@drawable/bg_btn4"
        android:text="登錄"
        android:textColor="#fff"
        android:textSize="20sp"
        />
</RelativeLayout>

EditTextActivity代碼

public class EditTextActivity extends AppCompatActivity {

    private Button mLoginBtn;
    private EditText mEtUsername, mEtPassword;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_edit_text);

        mLoginBtn = findViewById(R.id.btn_login);
        mLoginBtn.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                Toast.makeText(EditTextActivity.this, "登錄成功", Toast.LENGTH_SHORT).show();
            }
        });

        mEtUsername = findViewById(R.id.et_1);
        mEtUsername.addTextChangedListener(new TextWatcher() {
            @Override
            public void beforeTextChanged(CharSequence s, int start, int count, int after) {

            }

            @Override
            public void onTextChanged(CharSequence s, int start, int before, int count) {
                Log.d("eidtText",s.toString());
            }

            @Override
            public void afterTextChanged(Editable s) {

            }
        });
    }
}
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市活箕,隨后出現(xiàn)的幾起案子力麸,更是在濱河造成了極大的恐慌,老刑警劉巖育韩,帶你破解...
    沈念sama閱讀 207,113評(píng)論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件克蚂,死亡現(xiàn)場(chǎng)離奇詭異,居然都是意外死亡筋讨,警方通過查閱死者的電腦和手機(jī)埃叭,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,644評(píng)論 2 381
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來悉罕,“玉大人赤屋,你說我怎么就攤上這事”诎溃” “怎么了类早?”我有些...
    開封第一講書人閱讀 153,340評(píng)論 0 344
  • 文/不壞的土叔 我叫張陵,是天一觀的道長(zhǎng)嗜逻。 經(jīng)常有香客問我涩僻,道長(zhǎng),這世上最難降的妖魔是什么变泄? 我笑而不...
    開封第一講書人閱讀 55,449評(píng)論 1 279
  • 正文 為了忘掉前任令哟,我火速辦了婚禮,結(jié)果婚禮上妨蛹,老公的妹妹穿的比我還像新娘。我一直安慰自己晴竞,他們只是感情好蛙卤,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,445評(píng)論 5 374
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著,像睡著了一般颤难。 火紅的嫁衣襯著肌膚如雪神年。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,166評(píng)論 1 284
  • 那天行嗤,我揣著相機(jī)與錄音已日,去河邊找鬼。 笑死栅屏,一個(gè)胖子當(dāng)著我的面吹牛飘千,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播栈雳,決...
    沈念sama閱讀 38,442評(píng)論 3 401
  • 文/蒼蘭香墨 我猛地睜開眼护奈,長(zhǎng)吁一口氣:“原來是場(chǎng)噩夢(mèng)啊……” “哼!你這毒婦竟也來了哥纫?” 一聲冷哼從身側(cè)響起霉旗,我...
    開封第一講書人閱讀 37,105評(píng)論 0 261
  • 序言:老撾萬榮一對(duì)情侶失蹤,失蹤者是張志新(化名)和其女友劉穎蛀骇,沒想到半個(gè)月后厌秒,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 43,601評(píng)論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡擅憔,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,066評(píng)論 2 325
  • 正文 我和宋清朗相戀三年鸵闪,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片雕欺。...
    茶點(diǎn)故事閱讀 38,161評(píng)論 1 334
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡岛马,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出屠列,到底是詐尸還是另有隱情啦逆,我是刑警寧澤,帶...
    沈念sama閱讀 33,792評(píng)論 4 323
  • 正文 年R本政府宣布笛洛,位于F島的核電站夏志,受9級(jí)特大地震影響,放射性物質(zhì)發(fā)生泄漏苛让。R本人自食惡果不足惜沟蔑,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,351評(píng)論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望狱杰。 院中可真熱鬧瘦材,春花似錦、人聲如沸仿畸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,352評(píng)論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至簿晓,卻和暖如春眶拉,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背憔儿。 一陣腳步聲響...
    開封第一講書人閱讀 31,584評(píng)論 1 261
  • 我被黑心中介騙來泰國(guó)打工忆植, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人谒臼。 一個(gè)月前我還...
    沈念sama閱讀 45,618評(píng)論 2 355
  • 正文 我出身青樓朝刊,卻偏偏與公主長(zhǎng)得像,于是被迫代替她去往敵國(guó)和親屋休。 傳聞我的和親對(duì)象是個(gè)殘疾皇子坞古,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,916評(píng)論 2 344