直播系統程式碼,訊息傳送框設計成橢圓形狀

zhibo系統開發發表於2022-01-17

直播系統程式碼,訊息傳送框設計成橢圓形狀的相關程式碼

xml佈局:

 <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="45dp"
        android:orientation="horizontal"
        android:id="@+id/btm"
        android:background="@color/white"
        android:gravity="center_vertical"
        android:layout_weight="1">
        <EditText
            android:layout_width="wrap_content"
            android:layout_height="40dp"
            android:layout_weight="9"
            android:id="@+id/edit"
            android:background="@drawable/rectangle_edit"/>
        <Button
            android:layout_width="25dp"
            android:layout_height="40dp"
            android:id="@+id/sendBtn"
            android:text="傳送"
            android:textSize="18sp"
            android:textColor="@color/white"
            android:layout_weight="1"
            android:background="@drawable/rectangle_btn"/>
    </LinearLayout>

rectangle_edit.xml:

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="
    <!-- 角度 -->
    <corners android:radius="100dp"/>
    <!-- 填充色 -->
    <solid android:color="#ffffff"/>
    <!-- 描邊 設定線寬及顏色 -->
    <stroke android:color="#cccacb"
        android:width="1dp"/>
</shape>
rectangle_btn.xml:
<?xml version="1.0" encoding="utf-8"?>
<shape
    xmlns:android="
    android:shape="rectangle">
    <!-- 圓角的半徑 -->
    <corners android:radius="20dp"/>
    <!-- 填充顏色 -->
    <solid android:color="#07C060"/>
</shape>

以上就是直播系統程式碼,訊息傳送框設計成橢圓形狀的相關程式碼, 更多內容歡迎關注之後的文章


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69978258/viewspace-2852600/,如需轉載,請註明出處,否則將追究法律責任。

相關文章