本教學適用於ios系統,決勝時刻手遊在國區還未上線,那麼,如何下載及登陸呢?接下來小編為您帶來相關教學。1首先,在桌面開啟【App Store】,在搜尋欄中搜尋【決勝時刻】,可以看到,結果
2020-11-29 13:46:59
android開發中view的布局有幾種方法,分別是線性布局(Linear Layout)、相對布局(Relative Layout)、表格佈局(Table Layout)、標籤布局(Tab Layout)、絕對布局(Absolute Layout)。先一起學習線性布局(Linear Layout)。
線性布局(Linear Layout)是一個viewgroup以線性方向顯示它的子檢視元素。在xml中寫入以下程式碼。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal" >(指方向是垂直的)
<Button(指加入一個按鈕)
android:id="@+id/button1"(定義一個按鈕的名稱)
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"(權重)
android:text="@string/button1"/>(在strings.xml中定義按鈕)
<Button
android:id="@+id/button2"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:text="@string/button2"/>
<Button
android:id="@+id/button3"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:text="@string/button3"/>
<Button
android:id="@+id/button4"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:text="@string/button4"/>
<Button
android:id="@+id/button5"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:text="@string/button5"/>
</LinearLayout>
在mainactivity.java中寫入以下程式碼:
package com.ddexample.dh1;
import android.os.Bundle;
import android.support.v7.app.ActionBarActivity;
public class MainActivity extends ActionBarActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
}
在strings.xml中寫入以下程式碼:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">Dh1</string>
<string name="action_settings">Settings</string>
<string name="title_activity_activity_b">ActivityB</string>
<string name="button1">button1</string>
<string name="button2">button2</string>
<string name="button3">button3</string>
<string name="button4">button4</string>
<string name="button5">button5</string>
</resources>
然後直接執行這個android工程,就能得到一個具有線性布局介面了,裡面有五個按鈕。
android:orientation="horizontal" >(指方向是垂直的),如果把其值改為vertical,就變為水平了。
相關文章
本教學適用於ios系統,決勝時刻手遊在國區還未上線,那麼,如何下載及登陸呢?接下來小編為您帶來相關教學。1首先,在桌面開啟【App Store】,在搜尋欄中搜尋【決勝時刻】,可以看到,結果
2020-11-29 13:46:59
當我們在玩決勝時刻11-決勝時刻的時候如何進入監獄呢?1進入監獄,被士兵拉下車後,可以看到開啟的門,按住w鍵向大門走去,等待電梯的下降。 2隊友被拽倒在地,按住w繼續往前走,被帶著頭
2020-11-29 05:28:59
悟飯趣玩是一款可以直接下載遊戲的一款軟體,有很多朋友不知道如何下載,我在這裡出個教學。有需要的朋友可以看看。1第一步,開啟手機悟飯趣玩。 2第二步,點選psp類型遊戲。 3
2020-07-23 10:29:44
ps4惡靈古堡6怎麼雙人呢,還是有很多的小夥伴們不知道吧,現在我就來為朋友們簡單的介紹一下吧。1首先,我們大家先來一起看,如果是本地雙人的話就需要先進入我們的遊戲,再去選擇模
2020-07-23 10:29:42
許多小夥伴都喜歡玩墓麗影10:崛起那怎麼調中文字幕及語音?接下來我給大家簡單分享一下我的經驗,這次的古墓奇兵還有中文語音哦!1首先,我們開啟電腦,進入遊戲古墓奇兵這款遊戲,進入
2020-07-23 10:29:30
現在使用蘋果手機的小夥伴越來越多,那麼很多人想在蘋果手機上下載facebook卻不知道具體的操作方法,這裡小編就給大家介紹下蘋果手機怎麼下載facebook,希望能幫助到大家。 1首先
2019-12-26 05:53:33