2017-07-19 11 views
3

私のAndroidアプリでこのテーマを使用しています。Theme.AppCompat.Light.NoActionBarすべてのアクティビティのプロジェクト名はApplicationのタグの名前がlabelというタグが表示されています。 。ラベルを削除すると、タイトルの代わりにパッケージ名が表示されます。Androidアプリケーションのラベル名はどこにでも表示されます

正確には何が起こっていますか?

私はそれを修正するいくつかの方法があると知っていますが、どこに間違っているのか、何が起こっているのかを教えてください。バグですか?

私は前の回答Android Application Name Appears as Activity Nameを呼ばれ、試してみましたが、まだ動作しませんでした、だからここに私のmanifest.xmlのコピー以下

<application 
     android:allowBackup="true" 
     android:icon="@mipmap/ic_launcher" 
     android:label="@string/app_name" 
     android:roundIcon="@mipmap/ic_launcher_round" 
     android:supportsRtl="true" 
     android:theme="@style/AppTheme"> 
     <activity android:name=".MainActivity"> 
      <intent-filter> 
       <action android:name="android.intent.action.MAIN" /> 

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

は、サンプルのスクリーンショットです、ラベル名は、その活動が見ることができます(Activity2)はツールバーで構成され、白い部分はツールバーの編集テキストであり、ツールバー内には何も表示されません。

EDIT 1

<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar"> 
     <!-- Customize your theme here. --> 
     <item name="colorPrimary">@color/colorPrimary</item> 
     <item name="colorPrimaryDark">@color/colorPrimaryDark</item> 
     <item name="colorAccent">@color/colorAccent</item> 
     <item name="android:textColor">@color/white</item> 
     <item name="android:textColorPrimary">@color/white</item> 
     <item name="android:textColorSecondary">@color/white</item> 
    </style> 

EDIT 2

public class Activity2 extends AppCompatActivity { 


    LinedEditText editText; 
    Toolbar toolbar; 

    @Override 
    protected void onCreate(Bundle savedInstanceState) { 
     super.onCreate(savedInstanceState); 
     setContentView(R.layout.activity2); 


     toolbar = (Toolbar) findViewById(R.id.toolbar); 
     editText = (LinedEditText) findViewById(R.id.editText); 
     setSupportActionBar(toolbar); 


    } 
} 

activity2.xml

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:app="http://schemas.android.com/apk/res-auto" 
    xmlns:tools="http://schemas.android.com/tools" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:orientation="vertical" 
    > 
    <android.support.v7.widget.Toolbar 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:background="@color/green" 
     android:id="@+id/toolbar" 
     > 

     <EditText 
      android:layout_width="250dp" 
      android:layout_height="40dp" 
      android:id="@+id/title" 
      android:background="@color/white" 
      android:layout_margin="10dp" 
      /> 
     </android.support.v7.widget.Toolbar> 
    <com.test.testproject.LinedEditText 
     android:layout_height="match_parent" 
     android:layout_width="match_parent" 
     android:id="@+id/editText" 
     android:gravity="top" 
     /> 
</LinearLayout> 

enter image description here

+0

すべてのアクティビティを個別に設定できます。 android:name = "。Activity2" android:label = "@ string/app_short_name"> –

+0

これは問題ありません。それはバグですか? –

+0

私は、デフォルトですべてのアクティビティがラベルとしてapp_nameを設定すると思います。 –

答えて

0

更新日:

これは問題です。ツールバーの使用は避けてください。

<android.support.v7.widget.Toolbar 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:background="@color/green" 
     android:id="@+id/toolbar" 
     > 

     <EditText 
      android:layout_width="250dp" 
      android:layout_height="40dp" 
      android:id="@+id/title" 
      android:background="@color/white" 
      android:layout_margin="10dp" 
      /> 
     </android.support.v7.widget.Toolbar> 

あなたのテーマでNoActionBarを使用している場合は、アクティビティのレイアウトでツールバーを使用しないでください。これがアクティビティ名を取得する理由です。

ツールバーを使用している場合は、TITLEが無効になっていることを確認してください。

+0

これまでに決して起こったことはありませんでした。 –

+0

あなたは26のAPIレベルを使用していますか? –

+0

現在のAPIレベルは23. –

0

これを確認してください。ただのonCreate setSupportActionBar後の()メソッド(ツールバー)に入れ

getSupportActionBar().setDisplayShowTitleEnabled(false); 
+0

これまでに決して起こったことはありませんでした。このようにstyle.xmlを変更した場合は –

+0

となります。 false

+0

次のいずれかを実行する必要があります。コードまたはXML –

0
Check with setting theme for specific activity..which solves your problem..try this 
<style name = "NoActionBar" parent = "@android:style/Theme.Holo.Light"> 
     <item name = "android:windowActionBar">false</item> 
     <item name = "android:windowNoTitle">true</item> 
    </style> 
+0

解決策はいいです..私はなぜそれが今起きているのか早期ではないのか探していますか? –

0

setContentView(R.layout.activity_main); 
    ActionBar actionBar = getActionBar(); 
    actionBar.setTitle(""); 
+0

解決策はいいです..私はなぜそれが今起きているのか早く分からないのか探していますか?バグですか? –

+0

アプリケーションレベルのテーマを変更しましたか? – Rajan1404930

+0

'AppTheme'はグローバルテーマです –

関連する問題