Androidでstring.xmlから値を読み取る方法は?
この例は、Androidでstring.xmlから値を読み取る方法を示しています。
ステップ1 − Android Studioで新しいプロジェクトを作成し、[ファイル]⇒[新しいプロジェクト]に移動して、新しいプロジェクトを作成するために必要なすべての詳細を入力します。
ステップ2 −次のコードをres / values/strings.xmlに追加します
<resources> <string name="app_name">Sample</string> <string name="NameOfTheString">Test string</string> </resources>
ステップ3 −次のコードをres / layout / activity_main.xml
に追加します<?xml version="1.0" encoding="utf-8"?> <android.support.constraint.ConstraintLayout xmlns:android="https://schemas.android.com/apk/res/android" xmlns:app="https://schemas.android.com/apk/res-auto" xmlns:tools="https://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" tools:context=".MainActivity"> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintLeft_toLeftOf="parent" app:layout_constraintRight_toRightOf="parent" android:text="@string/NameOfTheString" app:layout_constraintTop_toTopOf="parent" /> </android.support.constraint.ConstraintLayout>
ステップ4 −次のコードをsrc / MainActivity.java
に追加しますpackage com.example.sample; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; public class MainActivity extends AppCompatActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); } }
ステップ5 –次のコードをapp/manifests/AndroidManifest.xmlに追加します
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="https://schemas.android.com/apk/res/android" package="com.example.sample"> <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> </application> </manifest>
-
Androidからマルウェアを削除する方法は?
現代の世界では、スマートフォンはすべての人の生活の中で動かせない部分になっています。銀行アプリ、ナビゲーションアプリ、ユーティリティアプリなど、人にとって重要なほとんどすべてのものが含まれています。したがって、所有者のプライバシーを保護するために、スマートフォンを保護することは非常に重要です。 Androidスマートフォンも、コンピューターと同様に、ウイルス、トロイの木馬、スパイウェア、アドウェアなどの悪意のあるプログラムに感染する可能性があります。 Androidマルウェアは主に、機密情報を盗み、無関係な広告を表示してユーザーを誤解させ、悪意のあるWebサイトにリダイレクトすることを目的と
-
C#で文字列からXDocumentにデータを入力する方法は?
XMLは自己記述型の言語であり、データと、それに含まれる情報を識別するためのルールを提供します。 HTMLと同様に、XMLはSGMLのサブセットであり、StandardGeneralizedMarkupLanguageです。 XDocumentクラスには、有効なXMLドキュメントに必要な情報が含まれています。これには、XML宣言、処理命令、およびコメントが含まれます。 XDocumentクラスによって提供される特定の機能が必要な場合にのみ、XDocumentオブジェクトを作成する必要があることに注意してください。多くの場合、XElementを直接操作できます。 XElementを直接操作す