您好,登錄后才能下訂單哦!
如何使用Android AS創建自定義布局,針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。
先創建一個title.xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:background="@drawable/ic_launcher_foreground" > <!--background可以放圖片,放了合適的圖片比較好看,這里我比較隨意點,沒找到資源--> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/title_Back" android:layout_margin="5dp" android:background="@drawable/ic_launcher_background" android:text="@string/Back" android:textColor="#fff"/> <TextView android:layout_width="0dp" android:layout_height="wrap_content" android:id="@+id/title_Text" android:layout_weight="1" android:gravity="center" android:text="This is a title" android:textColor="#F44336" android:textSize="24sp" tools:ignore="HardcodedText"/> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/title_edit" android:layout_margin="5dp" android:background="@drawable/ic_launcher_background" android:text="EDIT" android:textColor="#fff" tools:ignore="HardcodedText" />
這里是為了自定義布局,這就像C++中創建類,要用的時候直接調用就行了。
下面展示如何調用
activity_main.xml:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent"> <!--酷似C++調用庫--> <include layout="@layout/title"/> </LinearLayout>
最后記得將標題行隱藏起來,這樣才能模擬iphone的標題欄
import androidx.appcompat.app.ActionBar; import androidx.appcompat.app.AppCompatActivity; import android.os.Bundle; public class MainActivity extends AppCompatActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); ActionBar actionBar=getSupportActionBar(); if(actionBar!=null) actionBar.hide();//將標題欄隱藏起來 } }
結果:
關于如何使用Android AS創建自定義布局問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。