0

嗨,我必须开发一个示例应用程序。在这里我希望选择应用程序名称是管理员登录和重力是中心。在这里我必须运行应用程序意味着应用程序名称已成功显示。但重力不适用于我。这里我希望将应用名称对齐为中心。我该怎么做。请给我解决方案。

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.androidlogin.ws"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk android:minSdkVersion="8" />

<application
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name" >
    <activity
        android:name=".AndroidLoginExampleActivity"
        android:label="Admin Login"  android:theme="@style/CustomTheme"   android:gravity="center">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
  </application>

  </manifest>

编辑:

  <style name="CustomWindowTitleBackground"> 
    <item name="android:background">#093f7c</item> 
    <item name="android:gravity">center</item>
 </style> 
 <style name="CustomTheme" parent="android:Theme"> 
    <item name="android:windowTitleSize">35dip</item>
    <item name="android:windowTitleBackgroundStyle">@style/CustomWindowTitleBackground</item>
 </style>
4

3 回答 3

1

我检查了你的风格。你在那里指定

<item name="android:gravity">center</item>

CustomWindowTitleBackground. 这是不可能的,因为设置重心意味着它将与其父级对齐。所以不可能将布局宽度赋予fill_parent.

所以我认为你必须使用自定义 xml 文件并对齐你的标题

于 2012-10-03T10:36:54.323 回答
0

定义自定义标题样式/主题。还检查 com.example.android.apis.app.CustomTitle。

于 2012-10-03T10:01:22.517 回答
0

尝试在 AndroidLoginExampleActivity.xml 文件中设置重力

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"   
android:id="@+id/layout" 
android:layout_width="match_parent" 
android:layout_height="wrap_content"  
android:orientation="vertical"
android:gravity ="center" >

或者如果你想在子布局中使用重力,那么在子布局中使用 layout_gravity。

于 2012-10-03T10:25:33.890 回答