溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

大數(shù)據(jù)中仿照qq界面接收短信的界面效果圖的示例代碼怎么寫

發(fā)布時間:2022-01-12 10:46:10 來源:億速云 閱讀:128 作者:柒染 欄目:移動開發(fā)


這篇文章跟大家分析一下“仿照qq界面接收短信的界面效果圖的示例代碼怎么寫”。內(nèi)容詳細(xì)易懂,對“仿照qq界面接收短信的界面效果圖的示例代碼怎么寫”感興趣的朋友可以跟著小編的思路慢慢深入來閱讀一下,希望閱讀后能夠?qū)Υ蠹矣兴鶐椭?。下面跟著小編一起深入學(xué)習(xí)“仿照qq界面接收短信的界面效果圖的示例代碼怎么寫”的知識吧。

我這個布局主要采用Relativelayout實(shí)現(xiàn)的,因?yàn)镽elativeLayou是一個用于設(shè)計(jì)用戶界面的強(qiáng)大工具,因?yàn)樗芟短滓晥D組和保持我們布局為扁平結(jié)構(gòu),這可以提高運(yùn)行時性能。如果我們采用了多個嵌套的LinearLayout組,我們應(yīng)該采用一個單獨(dú)的RelativeLayout來替代。

<?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="wrap_content"

    android:background="@color/color_white"

    android:orientation="vertical" >

    <ImageView

        android:id="@+id/img_head_portrait"

        android:layout_width="60dp"

        android:layout_height="60dp"

        android:layout_margin="@dimen/ten"

        android:src="@drawable/pic_avatar_tom3" />

    <TextView

        android:id="@+id/txt_name"

        android:layout_width="wrap_content"

        android:layout_height="wrap_content"

        android:layout_marginTop="@dimen/ten"

        android:layout_toRightOf="@+id/img_head_portrait"

        android:text="@string/liuqiangdong"

        android:textColor="@color/color_dark_black"

        android:textSize="@dimen/fifteen" />

    <TextView

        android:id="@+id/txt_talk_content"

        android:layout_width="wrap_content"

        android:layout_height="wrap_content"

        android:layout_below="@+id/txt_name"

        android:layout_marginTop="@dimen/fifteen"

        android:layout_toRightOf="@+id/img_head_portrait"

        android:text="劉強(qiáng)東投資人約談"

        android:textColor="@color/color_search" />

    <TextView

        android:id="@+id/txt_talk_time"

        android:layout_width="wrap_content"

        android:layout_height="wrap_content"

        android:layout_alignParentRight="true"

        android:layout_marginRight="@dimen/ten"

        android:layout_marginTop="@dimen/ten"

        android:text="11:10"

        android:textColor="@color/color_search" />

    <TextView

        android:id="@+id/txt_talk_num"

        android:layout_width="wrap_content"

        android:layout_height="wrap_content"

        android:layout_alignParentRight="true"

        android:layout_below="@+id/txt_talk_time"

        android:layout_marginRight="@dimen/ten"

        android:layout_marginTop="@dimen/ten"

        android:background="@drawable/ico_remind"

        android:text="1"

        android:gravity="center"

        android:textColor="@color/color_white" />

</RelativeLayout>

關(guān)于仿照qq界面接收短信的界面效果圖的示例代碼怎么寫就分享到這里啦,希望上述內(nèi)容能夠讓大家有所提升。如果想要學(xué)習(xí)更多知識,請大家多多留意小編的更新。謝謝大家關(guān)注一下億速云網(wǎng)站!

向AI問一下細(xì)節(jié)
推薦閱讀:
  1. 仿QQ界面
  2. qq登陸界面

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI