gpt4 book ai didi

java - 如何将按钮对齐到选项卡内的中心?

转载 作者:行者123 更新时间:2023-12-01 17:34:23 25 4
gpt4 key购买 nike

我正在开发一个主要由3个选项卡组成的程序,我遵循this tutorial创建选项卡。我遇到的问题是,当我想将按钮与选项卡的中心对齐时,它仅作为水平中心对齐(我需要它垂直和水平居中):

enter image description here

如何解决这个问题?我是否以正确的方式使用选项卡?

这是我的源代码:

MainActivity.java

public class MainActivity extends TabActivity
{

@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.main);

Resources res = getResources(); // Resource object to get Drawables
TabHost tabHost = getTabHost(); // The activity TabHost
TabHost.TabSpec spec; // Resusable TabSpec for each tab
Intent intent; // Reusable Intent for each tab

// Create an Intent to launch an Activity for the tab (to be reused)
intent = new Intent().setClass(this, HomeActivity.class);

// Initialize a TabSpec for each tab and add it to the TabHost
spec = tabHost.newTabSpec("home").setIndicator("Home",
res.getDrawable(R.drawable.ic_tab_home))
.setContent(intent);
tabHost.addTab(spec);

// Do the same for the other tabs

tabHost.setCurrentTab(0);
}
}

<小时/> HomeActivitiy.java

public class HomeActivity extends Activity
{
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.home);
}
}

<小时/> ma​​in.xml

<?xml version="1.0" encoding="utf-8"?>
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/tabhost"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="5dp">
<TabWidget
android:id="@android:id/tabs"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="5dp" >
</FrameLayout>
</LinearLayout>
</TabHost>

<小时/> home.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<Button android:text="OPEN" android:id="@+id/btnOpen"
android:gravity="center"
android:layout_gravity="center"
android:layout_width="100dp"
android:layout_height="100dp">
</Button>
</LinearLayout>

最佳答案

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<Button android:text="OPEN"
android:id="@+id/btnOpen"
android:layout_centerInParent="true"
android:layout_width="100dp"
android:layout_height="100dp">
</Button>
</RelativeLayout>

尝试使用RelativeLayout。

关于java - 如何将按钮对齐到选项卡内的中心?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7934253/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com