android按鈕布局
⑴ android中如何讓布局中的button按鈕在布局中靠右下角顯示
1、把手機屏幕分成上下。上下兩部分都採用Linearlayout方式布局
java"><LinearLayout>
<LinearLayout>
上半部分
</LinearyLayout>
<LinearLayout>
下半部分
</LinearyLayout>
</LinearLayout>
2、下半部分LinearLayout高度固定,上半部分LinearyLayout設置layout_weight權重,占滿剩餘屏幕空間
<LinearLayout>
<LinearLayout
android:layout_height="wrap_content"
android:llayout_weight="1">
//設置高度自適應,並且權重為1
</LinearyLayout>
<LinearLayoutandroid:layout_height="50px">
//下半部分設置高度固定
</LinearyLayout>
</LinearLayout>
3、下半部分LinearLayout中添加按鈕,設置android:gravity右對齊。
<LinearLayoutandroid:layout_height="50px"
android:gravity="right">
//下半部分設置高度固定
<buttonandtoid:text="右下角按鈕"/>
</LinearyLayout>
⑵ Android音樂通知布局的按鈕加動效
需要添加代碼按鈕才有動效。在Android音樂通知布局中,createCircularReveal方法創建了一個Animator,設置動畫的中心位置(cx,cy),起始半徑(radius)、結束半徑(0),在動畫播放之前,設置了一個事件監聽器,布局按鈕就有動畫播放效果了。
⑶ android布局裡的Button排列問題
這樣可以完全達到你的要求,並且屏幕怎麼變都行
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<Button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"/>
<Button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"/>
<Button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"/>
<Button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"/>
</LinearLayout>
⑷ Android如何在一個界面裡布局4個按鈕 分為2行2列 與屏幕上下、水平居中對齊
這個實現的方法很多,我簡單說一個吧,最外層一個線性布局,設置內部在父容器中居中,然後裡面一個表格布局就可以,或者網格布局也行。還可以用兩個線性布局,每個布局裡面有兩個按鈕,並且設置 它為水平居中,就可以了
⑸ android eclipse activity 怎麼自由布局按鈕
1、建議使用相對布局,可以根據父控制項來自由布局按鈕,例如:
<RelativeLayoutxmlns: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:orientation="vertical"
tools:context=".MainActivity">
<Button
android:id="btn_001"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="中心按鈕"
android:layout_centerParent="true"
/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="上面按鈕"
android:layout_centerHorizontal="true"
android:layout_above="@+id/btn_001"
/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="下面按鈕"
android:layout_centerHorizontal="true"
android:layout_below="@+id/center_btn"
/>
</RelativeLayout>
⑹ android的線性布局裡有幾個按鈕,怎樣控制按鈕之間的間距啊
線性布局裡面有兩種情況,
1、垂直布局:在每個按鈕上加上
//這個表示距上個控制項5dp距下個控制項5dp,相當於在上下各加了5dp的空白區域
android:layout_marginTop="5dp"
android:layout_marginBottom="5dp"
2、水平布局:在每個按鈕上加上
//這個表示距左邊的控制項5dp距右邊的控制項5dp,相當於在左右各加了5dp的空白區域
android:layout_marginLeft="5dp"
android:layout_marginRight="5dp"
⑺ android怎麼移動按鈕
剛才手機在畫面的顯示裡面,點擊移動按鈕就可以移動按鈕。
⑻ android編程中怎麼將一個按鈕置於最上層
可以用相對布局RelativeLayout,給RelativeLayout一個id,
然後按鈕按RelativeLayout作為父控制項進行相對布局,從而置於最上層。
代碼部分:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/webMainLayout"
>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/btnRegister"
android:layout_alignBottom="@id/webMainLayout"
android:layout_alignParentRight="true"
android:layout_alignParentBottom="true"
android:text="我是最上層按鈕"
/>
</RelativeLayout>
註:此按鈕會在最上層的右下位置 因為
android:layout_alignParentRight="true"
android:layout_alignParentBottom="true"
想更改成其它位置,改變令你想處的位置基於父控制項,如左上:
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
⑼ android界面布局,讓按鈕顯示在最下方,中間是ListView,沒填數據,下方的按鈕怎麼樣顯示在最下方
用相對布局,
android:layout_alignParentBottom="true"