短視訊直播原始碼,遊客模式下使用正常功能跳轉到登入頁面

zhibo系統開發發表於2022-05-06

短視訊直播原始碼,遊客模式下使用正常功能跳轉到登入頁面

1.1頂部圖片

使用圖片控制元件:ImageView

圖片存放到以drawable開頭的目錄下

程式碼:

<!--  頂部圖片  -->
    <ImageView
        android:layout_width="match_parent"
        android:layout_height="250dp"
        android:background="@drawable/doctor"/>


1.2賬號提示+輸入框

外層使用線性佈局控制元件:LinearLayout

內層使用文字控制元件:TextView;編輯框控制元件:EditText

<!--  賬號提示+輸入框  -->
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        android:layout_marginLeft="20dp"
        android:layout_marginRight="20dp"
        android:gravity="center_vertical"
        android:layout_marginTop="30dp">
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="賬         號"
            android:textSize="25dp" />
        <EditText
            android:layout_width="match_parent"
            android:layout_height="50dp"
            android:hint="請輸入您的賬號"
            android:paddingLeft="5dp"
            android:textSize="18dp"
            android:layout_marginLeft="10dp"
            android:inputType="text"/>
    </LinearLayout>


1.3密碼提示+輸入框

外層使用線性佈局控制元件:LinearLayout

內層使用文字控制元件:TextView;編輯框控制元件:EditText

<!--  密碼提示+輸入框  -->
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        android:layout_marginLeft="20dp"
        android:layout_marginRight="20dp"
        android:gravity="center_vertical"
        android:layout_marginTop="20dp">
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="密         碼"
            android:textSize="25dp" />
        <EditText
            android:layout_width="match_parent"
            android:layout_height="50dp"
            android:hint="請輸入您的密碼"
            android:paddingLeft="5dp"
            android:textSize="18dp"
            android:layout_marginLeft="10dp"
            android:inputType="numberPassword"/>
    </LinearLayout>


2.註冊頁面編寫

新建activity-生成RegiserActivity Java檔案和activity_regiser XML檔案

public void jumpToRegister(View view) {
        Intent intent = new Intent(MainActivity.this,RegiserActivity.class);
        startActivity(intent);
    }


以上就是 短視訊直播原始碼,遊客模式下使用正常功能跳轉到登入頁面,更多內容歡迎關注之後的文章


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

相關文章