mirror of
https://github.com/moparisthebest/android-app
synced 2024-12-25 07:58:48 -05:00
changing activity titles.
This commit is contained in:
parent
b98d2a9aaf
commit
e9fd003efc
@ -27,7 +27,9 @@
|
||||
</activity>
|
||||
<activity android:name="fr.gaulupeau.apps.Poche.ReadArticle" />
|
||||
<activity android:name="fr.gaulupeau.apps.Poche.ListArticles" />
|
||||
<activity android:name="fr.gaulupeau.apps.Poche.Settings" />
|
||||
<activity
|
||||
android:name="fr.gaulupeau.apps.Poche.Settings"
|
||||
android:label="@string/btnSettings" />
|
||||
|
||||
</application>
|
||||
</manifest>
|
||||
|
@ -87,6 +87,8 @@ public class ListArticles extends BaseActionBarActivity {
|
||||
}
|
||||
|
||||
});
|
||||
|
||||
setTitle("wallabag | " + readArticlesInfo.size() + " Articles");
|
||||
}
|
||||
|
||||
public ReadingListAdapter getAdapterQuery(String filter, ArrayList<Article> articleInfo) {
|
||||
|
@ -50,6 +50,8 @@ public class ReadArticle extends BaseActionBarActivity {
|
||||
String originalUrlDesc = originalUrlText;
|
||||
String htmlContent = ac.getString(3);
|
||||
|
||||
setTitle(titleText);
|
||||
|
||||
try {
|
||||
URL originalUrl = new URL(originalUrlText);
|
||||
originalUrlDesc = originalUrl.getHost();
|
||||
|
Loading…
Reference in New Issue
Block a user