Skip to content

Commit

Permalink
solve bug 0000273
Browse files Browse the repository at this point in the history
  • Loading branch information
domjos1994 committed Sep 1, 2019
1 parent 53947fc commit 37dc162
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ protected void initControls() {
this.chkAccountGuest = this.findViewById(R.id.chkAccountGuest);
this.txtAccountTitle = this.findViewById(R.id.txtAccountTitle);
List<Authentication.Tracker> ls = Arrays.asList(Authentication.Tracker.values());
this.txtAccountTitle.setAdapter(new ArrayAdapter<>(this.getApplicationContext(), android.R.layout.simple_list_item_1, ls));
this.txtAccountTitle.setAdapter(new ArrayAdapter<>(this.getApplicationContext(), android.R.layout.simple_dropdown_item_1line, ls));
this.txtAccountServer = this.findViewById(R.id.txtAccountServer);
this.txtAccountUserName = this.findViewById(R.id.txtAccountUserName);
this.txtAccountPassword = this.findViewById(R.id.txtAccountPassword);
Expand Down
3 changes: 2 additions & 1 deletion app/src/main/res/layout/account_activity.xml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,8 @@
android:hint="@string/general_title"
android:layout_weight="10"
android:layout_width="0dp"
tools:ignore="Autofill" />
tools:ignore="Autofill"
android:popupBackground="@color/colorAccent" />
</TableRow>

<TableRow>
Expand Down
6 changes: 4 additions & 2 deletions app/src/main/res/layout/search_activity.xml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,8 @@
android:hint="@string/projects"
android:layout_width="0dp"
android:layout_weight="10"
android:inputType="textMultiLine" />
android:inputType="textMultiLine"
android:popupBackground="@color/colorAccent" />
</TableRow>

<TableRow>
Expand All @@ -88,7 +89,8 @@
android:hint="@string/versions"
android:layout_width="0dp"
android:layout_weight="10"
android:inputType="textMultiLine" />
android:inputType="textMultiLine"
android:popupBackground="@color/colorAccent" />
</TableRow>
</TableLayout>
</ScrollView>
Expand Down

0 comments on commit 37dc162

Please sign in to comment.