1

Reload という名前のボタンをアクションバーの右側に揃えるにはどうすればよいですか? 私はこれが可能であることを知っていますandroid:gravity="right"を入れようとしましたが、うまくいきませんでした

activity_main_ab.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:gravity="fill_horizontal"
android:orientation="horizontal" >
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:orientation="horizontal" >

<Button
android:id="@+id/action_bar_button_about"
android:layout_width="fill_parent"
android:layout_height="match_parent"           
android:layout_weight="1"
android:background="@drawable/ios_btn"
android:textColor="#ffffff"
android:text="about" />

<Button
android:id="@+id/action_bar_button_reload"
android:layout_width="fill_parent"
android:layout_height="match_parent" 
android:background="@drawable/ios_btn"          
android:layout_weight="1"
android:textColor="#ffffff"
android:text="reload" />
</LinearLayout>    
</RelativeLayout>

ここに私のMainActivity.javaがあります

package jb.cydia;

import android.os.Bundle;
import android.app.ActionBar;
import android.app.Activity;
import android.view.LayoutInflater;
import android.view.View;

public class MainActivity extends Activity {

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);   
    final ActionBar ab = getActionBar();
    ab.setDisplayShowHomeEnabled(false);
    ab.setDisplayShowTitleEnabled(false);     
    final LayoutInflater inflater =    (LayoutInflater)getSystemService("layout_inflater");
    View view = inflater.inflate(R.layout.activity_main_ab,null); 
    ab.setCustomView(view);
    ab.setDisplayShowCustomEnabled(true);

}
}

ここに画像の説明を入力

はい、それはIOSのように見えます。私はカスタマイズについてアンドロイドを知っていますよね??

4

3 に答える 3

2

LinearLayout は必要ありません。RelativeLayout に固執し、android:layout_alignParentRight="true" を使用します。

良い例を示すこの回答を見てください: Android Layout Right Align

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:gravity="fill_horizontal"
android:orientation="horizontal" >


<Button
android:id="@+id/action_bar_button_about"
android:layout_width="wrap_content"
android:layout_height="wrap_content"           
android:layout_weight="1"
android:background="@drawable/ios_btn"
android:textColor="#ffffff"
android:text="about" />

<Button
android:id="@+id/action_bar_button_reload"
android:layout_width="wrap_content"
android:layout_height="wrap_content" 
android:background="@drawable/ios_btn"          
android:layout_weight="1"
android:textColor="#ffffff"
android:text="reload" 
android:layout_alignParentRight="true"/>

</RelativeLayout>

これが私がしたことです:

  • 線形レイアウトを削除しました
  • 追加したandroid:layout_alignParentRight="true"
  • android:layout_width と layout_height を wrap_content に変更しました
于 2013-05-27T23:04:57.517 に答える
1

次のようにする必要があります。

actionBar.setCustomView(view, new ActionBar.LayoutParams(ActionBar.LayoutParams.WRAP_CONTENT,
     ActionBar.LayoutParams.WRAP_CONTENT, Gravity.RIGHT | Gravity.CENTER_VERTICAL));
actionBar.setDisplayShowCustomEnabled(visible);
于 2015-11-27T14:40:24.870 に答える