Tag: 安卓

如何在路线谷歌地图v2机器人上绘制交互式折线

我有下面的代码,这是绘制折线对我来说,工作正常,但问题是,它不绘制交互式折线,画线缺less一些像素! import java.io.BufferedReader; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; import java.io.UnsupportedEncodingException; import java.util.ArrayList; import java.util.List; import org.apache.http.HttpEntity; import org.apache.http.HttpResponse; import org.apache.http.client.ClientProtocolException; import org.apache.http.client.methods.HttpPost; import org.apache.http.impl.client.DefaultHttpClient; import org.json.JSONArray; import org.json.JSONObject; import com.google.android.gms.maps.CameraUpdateFactory; import com.google.android.gms.maps.GoogleMap; import com.google.android.gms.maps.SupportMapFragment; import com.google.android.gms.maps.model.BitmapDescriptorFactory; import com.google.android.gms.maps.model.LatLng; import com.google.android.gms.maps.model.MarkerOptions; import com.google.android.gms.maps.model.Polyline; import com.google.android.gms.maps.model.PolylineOptions; import android.app.ProgressDialog; import android.content.Context; import android.graphics.Color; import android.os.AsyncTask; import android.os.Bundle; […]

Android – 文字上的阴影?

我想知道如何在Android上的文字添加阴影? 我有下面的代码,这是应用在位图上,我想被阴影… paint.setColor(Color.BLACK); paint.setTextSize(55); paint.setFakeBoldText(false); paint.setShadowLayer(1, 0, 0, Color.BLACK); //This only shadows my whole view… 感谢任何提示!

variables无法parsing

我正在尝试创build一个项目列表,不同的每个我和jvariables。 我的代码是: if (i == 0) { if (j == 0) { final CharSequence[] items = {"4:45", "5:00"} } else if (j == 1) { final CharSequence[] items = {"4:43", "4:58"} } else if (j == 2) { final CharSequence[] items = {"4:41", "4:56"} } else { final CharSequence[] items = {"4:38", "4:53"} } … […]

如何在外部方法中获取值asynchronousonDataChange()

对不起,如果我的英文不好。 但是我希望你能理解我编码中的错误。 我想从函数“ambilKey()”中检索值,以便在外部方法onDataChange()中获取“hasilKey”的值。 请让我的代码,我需要在外部方法onDataChange()getvalue“hasiKey”。 [MyPictureDatabaseFirebase] [1] [MyPictureResultLog] [2] public class IbuActivity extends AppCompatActivity { private FirebaseAuth mAuth; private String hasilKey="error"; private DatabaseReference dbAmbilKeyPengguna; protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_ibu); mAuth=FirebaseAuth.getInstance(); //Retrieve Value hasilKey is my problem ambilKey(); //Check Value Log.i("Result=",hasilKey); //hasilKey Not Working and not saved } private void ambilKey() { dbAmbilKeyPengguna=FirebaseDatabase.getInstance().getReference().child("DataPengguna").child(mAuth.getCurrentUser().getUid()).child("BisnisId"); dbAmbilKeyPengguna.addValueEventListener(new ValueEventListener() […]

我试图search附近的地方,如在Android的谷歌地图绘制区域内的银行,餐馆,自动提款机

我试图search附近的地方,如在Android的谷歌地图绘制区域内的银行,餐馆,自动提款机。 我得到一个数组中的坐标(经度和纬度),但我无法find该arrays附近的地方。 有人可以帮我吗? 我试图search,但没有find任何结果。 伟大的帮助将不胜感激! 这是我绘制的区号: public class MainActivity extends FragmentActivity implements OnTouchListener { private static final String TAG = "polygon"; private GoogleMap mGoogleMap; private View mMapShelterView; private GestureDetector mGestureDetector; private ArrayList<LatLng> mLatlngs = new ArrayList<LatLng>(); private PolylineOptions mPolylineOptions; private PolygonOptions mPolygonOptions; // flag to differentiate whether user is touching to draw or not private […]

如何将文件写入资产文件夹或在android的原始文件夹?

我正在处理一些应用程序,我必须从某个http位置更新资产/原始文件夹运行时中的某些文件。 任何人都可以帮助我通过共享如何写入资产或原始文件夹中的文件?

如何在首次打开应用程序时只启动一次活动?

我有一个活动,我只想在应用程序第一次运行时运行。 再也不会。 这是一个Facebooklogin活动。 我只想在应用程序初次打开时启动一次。 我怎么去做这个?

在手机版android中打开google play store的链接

我有我的最新应用程序中的其他应用程序的链接,我以这种方式打开它们。 Uri uri = Uri.parse("url"); Intent intent = new Intent (Intent.ACTION_VIEW, uri); startActivity(intent); 此代码打开谷歌Play商店的浏览器版本。 当试图从我的手机打开,手机会提示是否要使用浏览器或谷歌播放,如果我select第二个,它会打开手机版的谷歌播放存储。 你能告诉我这是怎么发生的? 我的意思是不要问我,而是直接打开手机版的谷歌播放,我看到,而直接从手机打开它。

在Android中的标签中启动活动

这是交易。 我有一个三个选项卡的应用程序。 通过与选项卡中的项目的各种交互,我最终启动其他活动。 客户端已经检查了这一点,并希望在标签内“启动”,所以标签保持可见,如果用户点击标签,则返回setContent函数中定义的原始活动。 这是可能的,如何从其他活动去解决这个问题? (即孩子的活动,而不是定义TabHost和访问调用setContent的)?

如何访问Android的通话logging?

我想收到通话logging。 例如,用户的呼叫次数,被呼叫的分钟数等 我如何在android中实现这个?