直播軟體搭建,Android studio設計兩個介面間的切換

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

直播軟體搭建,Android studio設計兩個介面間的切換

step1:新建一個工程File-New-New Project

step2:接下來一路next,最後finish。

step3:工程新建完成後,在左側欄裡依次展開app-java-第一個-MainActivity。在此編寫Java程式

package com.example.interaction;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
public class MainActivity extends AppCompatActivity {
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);//首先呼叫xml中activity_main
        Button ok=(Button)this.findViewById(R.id.btn);
        //實現匿名內部類?
        ok.setOnClickListener(new View.OnClickListener(){
            @Override
            public void onClick(View v){
                setContentView(R.layout.twolayout);
            }
        });
    }}


step4:在左側欄依次展開app-res-layout-activity_main.xml,在此編寫第一個xml程式。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="
    xmlns:tools="
    android:id="@+id/activity_main"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    tools:context="com.example.interaction.MainActivity">
    <!--新增一個文字,顯示“第一頁”,第一二行必有,三四行上下邊距,第五行顯示文字,第六行水平居中-->
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="30dp"
        android:layout_marginBottom="60dp"
        android:text="第一頁"
        android:layout_gravity="center_horizontal"/>
    <!--新增一個按鈕,顯示“第一頁”,第一二行必有,第三行居中對齊,第四行設定Button的id,第五行顯示文字-->
    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:id="@+id/btn"
        android:text="切換頁面"/>
以上就是直播軟體搭建,Android studi

o設計兩個介面間的切換, 更多內容歡迎關注之後的文章


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

相關文章