- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
AutocompleteSupportFragment autocompleteFragment=(AutocompleteSupportFragment)
getSupportFragmentManager().findFragmentById(R.id.autocomplete_fragment);
ImageView searchIcon = (ImageView)
((LinearLayout)autocompleteFragment.getView()).getChildAt(0);
searchIcon.setImageDrawable(getResources().getDrawable(R.drawable.search));
想为 map 中的搜索框设置自定义背景
autocompleteFragment.getView().setBackground(new Drawable));// need help here
最佳答案
谷歌的 documentation说:
By default, the fragment has no border or background. To provide a consistent visual appearance, nest the fragment within another layout element such as a CardView.
例如给它一个 quantum_orange 的外观,我这样做了:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<androidx.cardview.widget.CardView xmlns:card_view="http://schemas.android.com/apk/res-auto"
android:id="@+id/card_view"
android:layout_width="match_parent"
android:layout_height="60dp"
android:layout_gravity="center"
card_view:cardBackgroundColor="@color/quantum_orange"
card_view:cardCornerRadius="4dp">
<fragment
android:id="@+id/autocomplete_fragment"
android:name="com.google.android.libraries.places.widget.AutocompleteSupportFragment"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</androidx.cardview.widget.CardView>
</LinearLayout>
否则你可以这样做:
autocompleteFragment.getView().setBackgroundResource(R.drawable.my_drawable);
或者这个:
autocompleteFragment.getView().setBackgroundColor(Color.RED);
或者,您可能想研究使用自定义 fragment 创建您自己的完全可自定义的 UI。
希望对你有帮助。
关于java - 更改 google_map 中 AutoCompleteFragment 的背景,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58097047/
我试图写一个聚合物元素负责绘制谷歌 map 表示。 这是代码: @CustomTag('map-element') class MapElement extends PolymerElement {
我只是了解有关网站的Flutter。 我需要添加一些Google Map javascript API并在google_maps上使用pub.dev依赖项 我从这里开始遵循示例,但是在使用VSCode
AutocompleteSupportFragment autocompleteFragment=(AutocompleteSupportFragment) getSuppor
我正在尝试在 Flutter 的谷歌地图插件中找出谷歌地图可见部分的边界框。 能买到吗? 如果不是,是否可以根据 map 中心的缩放级别和纬度、经度来计算边界框? 最佳答案 那就是 GoogleMap
我是一名优秀的程序员,十分优秀!